Skip to content
Guides
CatalogChannels
channel:read

List channel listings

GET/v1/channels/{channelId}/listings

List channel listings. A successful request returns HTTP 200 with the documented response body.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Path Parameters

channelId*string

Identifier of the sales channel.

Query Parameters

limit?integer

Maximum number of results to return.

Formatint32
cursor?string

Opaque cursor from the previous response. Omit it on the first page.

search?string

Free-text filter. Which fields it covers depends on the resource.

sortBy?string

Field to sort by. Accepted values depend on the resource.

sortDirection?string

Sort direction: asc or desc.

Value in

  • "asc"
  • "desc"
status?array<>

Only items in these statuses.

readiness?array<>
categoryIds?array<ResourceId>

Only items in these categories.

gender?array<string>

Gender the item is intended for.

minPrice?number

Lowest price to include, in the store currency.

Formatdouble
maxPrice?number

Highest price to include, in the store currency.

Formatdouble
minStock?integer

Minimum stock level.

Formatint32
maxStock?integer

Maximum stock level.

Formatint32
issues?boolean

Header Parameters

x-Store-Id?string

Store the request acts on. Not needed when the token is bound to a store.

Authorization*string

OAuth 2.0 bearer token.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/channels/7204558912004325301/listings" \  -H "x-Store-Id: <store-id>" \  -H "Authorization: Bearer <token>"
{  "data": [    {      "id": "7204558912004325301",      "channelId": "7204558912004325301",      "productId": "7204558912004325301",      "listingType": "salesChannel",      "externalId": "7204558912004325301",      "externalUrl": "https://example.com/resource",      "status": "draft",      "price": 1,      "compareAtPrice": 1,      "lastSyncAt": "2026-08-01T15:30:00Z",      "lastSyncError": "example",      "lastSyncErrorCode": "example_code",      "readinessStatus": "unknown",      "readinessIssues": [        {          "code": "example_code",          "message": "example",          "blocking": false,          "source": "example",          "references": [            "example"          ],          "causeCode": 1,          "sku": "SKU-001"        }      ],      "publishable": false,      "readinessUpdatedAt": "2026-08-01T15:30:00Z",      "createdOn": "2026-08-01T15:30:00Z",      "updatedOn": "2026-08-01T15:30:00Z"    }  ],  "hasNextPage": false,  "nextCursor": "example",  "totalCount": 1}