Skip to main content

Method

GET /v1/marketplace/products Requires the catalog:read scope and workspace context.

Query Parameters

providerId
string
Filter to one or more provider IDs. Repeat the parameter to pass multiple providers.

Headers

Authorization
string
required
Bearer token (e.g. Authorization: Bearer YOUR_API_KEY)
curl "https://api.voyantcloud.com/v1/marketplace/products?providerId=prov_citybreaks" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": [
    {
      "id": "mp_prod_citybreaks_rome",
      "providerId": "prov_citybreaks",
      "externalProductId": "rome-getaway",
      "title": "Rome City Break (3 nights)",
      "kind": "package",
      "status": "active"
    }
  ]
}
The marketplace returns up to 100 products per request. If additional filtering is needed, apply the providerId parameter to narrow the result set.