> ## 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.

# List Marketplace Providers

> Retrieve the marketplace providers that are currently accessible to your workspace.

## Method

`GET` `/v1/marketplace/providers`

Requires the `catalog:read` scope and a workspace-resolved API key.

## 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/providers" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

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

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

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

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "providers": [
      { "id": "prov_aegean", "kind": "transport", "status": "active" },
      { "id": "prov_citybreaks", "kind": "package", "status": "active" }
    ]
  }
  ```
</ResponseExample>

<Note>
  The response only includes providers that are either directly connected to the current workspace or
  granted via Voyant marketplace access.
</Note>

<Warning>
  This endpoint is only available in live workspaces. Sandbox workspaces receive a 403 Forbidden error.
</Warning>
