Skip to main content
GET
/
v1
/
public
/
products
List storefront products
curl --request GET \
  --url https://{operatorDomain}/v1/public/products
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "slug": "<string>",
      "shortDescription": "<string>",
      "bookingMode": "<string>",
      "capacityMode": "<string>",
      "visibility": "<string>",
      "sellCurrency": "<string>",
      "sellAmountCents": 123,
      "startDate": "<string>",
      "endDate": "<string>",
      "pax": 123,
      "isFeatured": true,
      "coverMedia": {
        "id": "<string>",
        "mediaType": "<string>",
        "name": "<string>",
        "url": "<string>",
        "mimeType": "<string>",
        "altText": "<string>",
        "sortOrder": 123,
        "isCover": true,
        "isBrochure": true,
        "isBrochureCurrent": true,
        "brochureVersion": 123
      },
      "categories": [
        {
          "id": "<string>",
          "parentId": "<string>",
          "name": "<string>",
          "slug": "<string>",
          "description": "<string>",
          "sortOrder": 123
        }
      ],
      "tags": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ],
      "destinations": [
        {
          "id": "<string>",
          "parentId": "<string>",
          "slug": "<string>",
          "canonicalPlaceId": "<string>",
          "name": "<string>",
          "description": "<string>",
          "seoTitle": "<string>",
          "seoDescription": "<string>",
          "destinationType": "<string>",
          "latitude": 123,
          "longitude": 123,
          "sortOrder": 123
        }
      ]
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Query Parameters

languageTag
string
bookingMode
string
capacityMode
string
productTypeId
string
categoryId
string
tagId
string
destinationId
string
destinationSlug
string
sort
enum<string>
default:name
Available options:
name,
createdAt,
startDate,
price
direction
enum<string>
default:asc
Available options:
asc,
desc
limit
integer
default:20
Required range: x <= 100
offset
integer
default:0
includeContent
boolean

Response

200 - application/json

Product list

data
object[]
total
integer
limit
integer
offset
integer