The Bet Brothers
HomeNewsLinkedIn
  • The Bet Brothers APIS
    • 🧩Core Concepts
    • šŸ”API Flow
  • OPERATOR API
    • šŸ”—Operator Integration Service
    • šŸ”‘Protocol API
      • Create api-token
      • Revoke api-token
  • šŸš€Game Launcher
    • Get Game Providers
    • Get Games
    • Launch Game in Demo Mode
    • Launch game in Real Mode
  • šŸ’°Wallet API
    • Balance
    • Bet
    • Win
    • Refund
    • Rollback Win
  • ⚔Free Spin API
    • Add Free Spin
    • Cancel Free Spin
  • šŸŽ®Game Insights
    • Get Game Bet Levels
    • Get Round Info
  • šŸ“–Addendum
    • TBB Error Codes
    • Wallet Error Response
  • SUPPLIER API
    • šŸ”—Supplier Integration Service
    • šŸ”‘Supplier Protocol API
    • šŸš€Game Launcher
      • Launch Game in Demo Mode
      • Launch Game in Real Mode
  • šŸŽ²Game Events
    • Balance
    • Bet
    • Win
    • Refund
  • šŸŽ®Game Insights
    • Bet Levels
    • Round Info
  • ⚔Free Spin API
    • Add Free Spin
    • Cancel Free Spin
  • šŸ“–Addendum
    • TBB Error Codes
Powered by GitBook
On this page
  1. Game Launcher

Get Game Providers

PreviousGame LauncherNextGet Games

Last updated 1 month ago

šŸš€
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
401
Unauthorized - Missing or invalid token
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
  }
}