Skip to main content
GET
/
admin
/
sellers
/
{id}
curl 'http://localhost:9000/admin/sellers/sel_01HXYZABCDEF' \
  -H 'Authorization: Bearer <token>'
{
  "seller": {
    "id": "sel_01HXYZABCDEF",
    "name": "Acme",
    "handle": "acme",
    "email": "hello@acme.co",
    "currency_code": "usd",
    "status": "open",
    "approved_at": "2026-06-02T09:30:00.000Z",
    "is_premium": false,
    "address": null,
    "payment_details": null,
    "professional_details": null,
    "members": [],
    "created_at": "2026-06-01T10:00:00.000Z",
    "updated_at": "2026-06-02T09:30:00.000Z"
  }
}
Returns a single seller, including address, payment details, professional details, payout account, and members.

Path parameters

id
string
required
The seller’s ID.

Query parameters

fields
string
Comma-separated list of fields to include, prefix with +/- to add or remove from defaults.

Response

seller
object
curl 'http://localhost:9000/admin/sellers/sel_01HXYZABCDEF' \
  -H 'Authorization: Bearer <token>'
{
  "seller": {
    "id": "sel_01HXYZABCDEF",
    "name": "Acme",
    "handle": "acme",
    "email": "hello@acme.co",
    "currency_code": "usd",
    "status": "open",
    "approved_at": "2026-06-02T09:30:00.000Z",
    "is_premium": false,
    "address": null,
    "payment_details": null,
    "professional_details": null,
    "members": [],
    "created_at": "2026-06-01T10:00:00.000Z",
    "updated_at": "2026-06-02T09:30:00.000Z"
  }
}