Get Game Providers
Last updated
Last updated
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.
Number of providers per page.
30
Successful response with list of game providers.
Unauthorized - Missing or invalid token
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
}
}