Skip to main content
GET
/
store
/
sellers
/
{id}
curl 'http://localhost:9000/store/sellers/sel_01JB2K8A1B' \
  -H 'x-publishable-api-key: pk_01JB2K3XYZ'
{
  "seller": {
    "id": "sel_01JB2K8A1B",
    "name": "Nordic Textiles",
    "handle": "nordic-textiles",
    "description": "Scandinavian linen and wool.",
    "logo": "https://cdn.example.com/nordic-logo.png",
    "banner": null,
    "is_premium": false,
    "metadata": null
  }
}
Returns a single seller; sellers that are not open or are inside a scheduled closure window return a 404.

Path parameters

id
string
required
The seller’s ID.

Query parameters

fields
string
Comma-separated fields and relations to include; prefix with +/- to add to or remove from the defaults.

Response

seller
object
curl 'http://localhost:9000/store/sellers/sel_01JB2K8A1B' \
  -H 'x-publishable-api-key: pk_01JB2K3XYZ'
{
  "seller": {
    "id": "sel_01JB2K8A1B",
    "name": "Nordic Textiles",
    "handle": "nordic-textiles",
    "description": "Scandinavian linen and wool.",
    "logo": "https://cdn.example.com/nordic-logo.png",
    "banner": null,
    "is_premium": false,
    "metadata": null
  }
}