Skip to main content
Returns the list of game providers currently enabled for your operator account.

Endpoint

GET /operator/providers

Headers

HeaderValue
AuthorizationApiKey ps_<your_api_key>

Example request

curl -X GET https://api.playstarters.io/operator/providers \
  -H "Authorization: ApiKey ps_YOUR_API_KEY"

Response — 200 OK

[
  {
    "id": "uuid",
    "name": "Pragmatic Play",
    "slug": "pragmatic"
  }
]

Response fields

id
string
Unique identifier (UUID) for the provider.
name
string
Human-readable provider name. Use this as the display label in your lobby UI.
slug
string
URL-safe identifier. Useful for filtering games by provider or building provider-specific URLs on your site.
Cache the providers list on your side and refresh periodically (e.g. once per hour). The catalog changes infrequently.