Get all listing operations

Get all listing operations API allows you to fetch a paginated list of single listing with all operations.

Request
Security:
path Parameters
listingId
required
string

Unique ID for this listing

query Parameters
pageSize
integer <int32> [ 1 .. 100 ]

Requested page number. Starts at 1.

cursor
string

The cursor to use as a starting point

Responses
200
400

Bad Request

401

Unauthorized

500

Internal Server Error

get/selling/listings/{listingId}/operations
Request samples
curl -i -X GET \
  'https://api.stockx.com/v2/selling/listings/:listingId/operations?pageSize=1&cursor=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "nextCursor": "c29tZS1jdXJzb3ItZGF0YQ==",
  • "operations": [
    ]
}