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"
}
}
Sellers
Retrieve Seller
Retrieve a seller by ID.
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
The seller’s ID.
Query parameters
Comma-separated list of fields to include, prefix with
+/- to add or remove from defaults.Response
Show properties
Show properties
The seller’s ID.
Display name of the seller.
Unique URL-safe handle.
Contact email of the seller.
Contact phone number.
Seller description.
URL of the seller’s logo.
URL of the seller’s banner image.
The seller’s website URL.
The seller’s currency code.
One of
open, pending_approval, suspended, terminated.Reason recorded with the latest status change.
When the seller was approved.
When the seller was rejected.
Whether the seller is marked as premium.
The seller’s address.
The seller’s bank payment details.
The seller’s legal and tax details.
The seller’s payout account with status and onboarding data.
The seller’s members.
Custom key-value data.
Creation timestamp.
Last update timestamp.
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"
}
}
⌘I