Get single listing

Get a listing API allows you to get a listing by its ID.

Request
Security:
path Parameters
listingId
required
string

Unique ID for this listing

Responses
200
400

Bad Request

401

Unauthorized

404

Not Found

500

Internal Server Error

get/selling/listings/{listingId}
Request samples
curl -i -X GET \
  https://api.stockx.com/v2/selling/listings/:listingId \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "listingId": "98e2e748-8000-45bf-a624-5531d6a68318",
  • "status": "ACTIVE",
  • "amount": "300",
  • "currencyCode": "AUD",
  • "inventoryType": "STANDARD",
  • "createdAt": "2021-11-09T12:44:31.000Z",
  • "updatedAt": "2021-11-09T12:44:31.000Z",
  • "batch": {
    },
  • "ask": {
    },
  • "order": {
    },
  • "product": {
    },
  • "variant": {
    },
  • "payout": {
    },
  • "lastOperation": {
    }
}