Getting started

Quickstart

Create an API key, send your first catalog payload, and render listing output.

Steps

  1. Create an API key in the dashboard under API keys.
  2. Send a POST /v1/listings request with a single SKU payload.
  3. Inspect the normalized response and publish to your marketplace channel.
Sample request
POST /v1/listings
Authorization: Bearer <api_key>
Content-Type: application/json

{
  "marketplace": "ebay",
  "payload": { "sku": "HERM-001", "title": "4K Camera" }
}