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 API
    • 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 API
      • Launch Game in Demo Mode
      • Launch Game in Real Mode
  • šŸŽ²Game Events
    • Balance
    • Bet
    • Win
    • Refund
  • šŸ“–Addendum
    • TBB Error Codes
Powered by GitBook
On this page
  1. Game Launcher API

Get Games

PreviousGet Game ProvidersNextLaunch Game in Demo Mode

Last updated 12 days ago

šŸš€
get

Returns a paginated list of games.

āš ļø 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 games per page.

Default: 30
Responses
200
Successful response with list of games.
application/json
401
Unauthorized - Missing or invalid token
application/json
get
GET /api/casino/games HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "data": [
    {
      "game_id": 1,
      "name": "Juicy Fruits",
      "reference": "JuicyFruits",
      "rtp": "95.00",
      "is_desktop": true,
      "is_mobile": true,
      "is_branded": true,
      "has_demo": false,
      "free_games_support": true,
      "provider_id": 1,
      "provider_name": "Game Studio"
    },
    {
      "game_id": 2,
      "name": "Monkey",
      "reference": "Monkey",
      "rtp": "95.00",
      "is_desktop": true,
      "is_mobile": true,
      "is_branded": false,
      "has_demo": true,
      "free_games_support": false,
      "provider_id": 1,
      "provider_name": "Game Studio"
    }
  ],
  "links": {
    "first": "/api/casino/games?page=1",
    "next": "/api/casino/games?page=2",
    "prev": null,
    "last": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "path": "/api/casino/games",
    "per_page": 2,
    "to": 2
  }
}