Get Game Providers

get

Returns a paginated list of casino game providers.

⚠️ API RATE LIMIT WARNING:

This API enforces rate limits. Exceeding the allowed number of requests may result in temporary blocking or throttling.

Authorizations
Query parameters
per_pageintegerOptional

Number of providers per page.

Default: 30
Responses
200

Successful response with list of game providers.

application/json
get
GET /api/casino/game-providers HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "data": [
    {
      "id": 1,
      "name": "Game Studio"
    },
    {
      "id": 13,
      "name": "Game Studio 2"
    }
  ],
  "links": {
    "first": "/api/casino/game-providers?page=1",
    "last": null,
    "prev": null,
    "next": "/api/casino/game-providers?page=2"
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "path": "/api/casino/game-providers",
    "per_page": "2",
    "to": 2
  }
}

Last updated