Skip to main content
GET
/
vendor
/
sellers
/
me
curl 'http://localhost:9000/vendor/sellers/me' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "seller": {
    "id": "sel_01HXYZ",
    "name": "Acme Store",
    "handle": "acme-store",
    "email": "store@acme.com",
    "status": "open",
    "currency_code": "usd",
    "address": { "city": "New York", "country_code": "us" }
  }
}
Returns the seller identified by the current seller context (x-seller-id header or session), including address, payment details, and professional details.

Query parameters

fields
string
Comma-separated fields to include in the response.

Response

seller
object
curl 'http://localhost:9000/vendor/sellers/me' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "seller": {
    "id": "sel_01HXYZ",
    "name": "Acme Store",
    "handle": "acme-store",
    "email": "store@acme.com",
    "status": "open",
    "currency_code": "usd",
    "address": { "city": "New York", "country_code": "us" }
  }
}