Documentation v1 · UPDATED 21 AUG 2026
Get an API key

List seller offers

GET https://aispotmarket.com/sell/api/v1/offers

Returns the active offers owned by the authenticated seller.

Auth: X-Seller-API-Key.

The response has an offers array. Each offer contains offer_id, status, model, region, price_per_million_tokens, quantity_tokens, remaining_tokens, created_at, and expires_at.

Advanced Market clients can use the raw GET /v1/sellers/{id}/asks operation beneath the /market/api base when they need seller-id addressing or per-1,000-token book primitives.

curl -s https://aispotmarket.com/sell/api/v1/offers \
  -H "X-Seller-API-Key: $SPOT_SELLER_KEY"

Create an offer with POST /sell/api/v1/offers and cancel its unfilled remainder with DELETE /sell/api/v1/offers/{id}.