> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voyantcloud.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Marketplace Product Availability

> Retrieve projected availability for a marketplace product (preview).

## Method

`GET` `/v1/marketplace/products/:productId/availability`

Requires the `inventory:read` scope and workspace context.

## Path Parameters

<ParamField path="productId" type="string" required>Marketplace product ID to query.</ParamField>

## Headers

<ParamField header="Authorization" type="string" required>Bearer token (e.g. <code>Authorization: Bearer YOUR\_API\_KEY</code>)</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.voyantcloud.com/v1/marketplace/products/mp_prod_citybreaks_rome/availability" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const res = await fetch("https://api.voyantcloud.com/v1/marketplace/products/mp_prod_citybreaks_rome/availability", {
    headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY}` },
  })
  const body = await res.json()
  ```

  ```python Python theme={null}
  import os, requests

  resp = requests.get(
    "https://api.voyantcloud.com/v1/marketplace/products/mp_prod_citybreaks_rome/availability",
    headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"},
  )
  body = resp.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 501 Not Implemented theme={null}
  { "error": "Not implemented" }
  ```
</ResponseExample>

<Warning>
  Availability projections are rolling out provider by provider. Until a provider-specific projection is
  available, the endpoint responds with <code>501 Not Implemented</code>. Subscribe to release notes for
  updates on availability coverage.
</Warning>
