latestOpenAPI 3.0.0MIT2026-08-043290199.3 KB

5b4ba84182d7

Listings

Get all listing operations

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

get/selling/listings/{listingId}/operations

Path parameters

listingIdstring required

Unique ID for this listing

Query parameters

pageSizeinteger

Requested page number. Starts at 1.

cursorstring

The cursor to use as a starting point

Response

nextCursorstring nullable required

Used for pagination when more than 200 operations are retrieved. The nextCursor value received in response will be same for all subsequent page requests.

Example response

{
  "nextCursor": "c29tZS1jdXJzb3ItZGF0YQ==",
  "operations": [
    {
      "listingId": "98e2e748-8000-45bf-a624-5531d6a68318",
      "operationId": "98e2e748-8000-45bf-a624-5531d6a68318",
      "createdAt": "2021-11-09T12:44:31.000Z",
      "updatedAt": "2021-11-09T12:44:31.000Z",
      "changes": {
        "additions": {
          "active": true,
          "askData": {
            "amount": "100",
            "currency": "USD",
            "expiresAt": "2022-08-24T18:06:43.600Z"
          }
        },
        "updates": {
          "updatedAt": "2021-11-09T12:44:31.000Z"
        }
      }
    }
  ]
}