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

# Fetch Providers

> List the active game providers available for your site.

Returns the list of game providers currently enabled for your operator account.

## Endpoint

```http theme={null}
GET /operator/providers
```

## Headers

| Header          | Value                      |
| --------------- | -------------------------- |
| `Authorization` | `ApiKey ps_<your_api_key>` |

## Example request

```bash theme={null}
curl -X GET https://api.playstarters.io/operator/providers \
  -H "Authorization: ApiKey ps_YOUR_API_KEY"
```

## Response — 200 OK

```json theme={null}
[
  {
    "id": "uuid",
    "name": "Pragmatic Play",
    "code": "pragmatic"
  }
]
```

### Response fields

<ResponseField name="id" type="string">
  Unique identifier (UUID) for the provider.
</ResponseField>

<ResponseField name="name" type="string">
  Human-readable provider name. Use this as the display label in your lobby UI.
</ResponseField>

<ResponseField name="code" type="string">
  Short provider code. Use this to filter games by provider or build provider-specific URLs on your site.
</ResponseField>

<Tip>
  Cache the providers list on your side and refresh periodically (e.g. once per hour). The catalog changes infrequently.
</Tip>
