> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.wuzzlo.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.wuzzlo.com/_mcp/server.

# Get paginated game catalog

POST /api/operator/get-games-list
Content-Type: application/json

Operator to Wuzzlo. Retrieve games enabled for the operator. Sign the exact JSON body with the operator private key. operatorId is required; page and pageSize are optional.

Reference: https://docs.wuzzlo.com/wuzzlo/operator-to-wuzzlo/get-paginated-game-catalog

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /api/operator/get-games-list:
    post:
      operationId: getPaginatedGameCatalog
      summary: Get paginated game catalog
      description: >-
        Operator to Wuzzlo. Retrieve games enabled for the operator. Sign the
        exact JSON body with the operator private key. operatorId is required;
        page and pageSize are optional.
      tags:
        - operatorToWuzzlo
      parameters:
        - name: Signature
          in: header
          description: >-
            Operator-to-Wuzzlo: Base64 RSA-SHA256 PKCS#1 v1.5 signature of the
            exact UTF-8 JSON body, created with the operator private key.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Catalog response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetGamesListResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetGamesListRequest'
components:
  schemas:
    GetGamesListRequest:
      type: object
      properties:
        operatorId:
          type: string
        page:
          type: integer
          default: 1
        pageSize:
          type: integer
          default: 20
      required:
        - operatorId
      title: GetGamesListRequest
    GameListItem:
      type: object
      properties:
        gameId:
          type: string
        gameName:
          type: string
        category:
          type: string
        providerName:
          type: string
        status:
          type: string
        uiBaseUrl:
          type: string
      required:
        - gameId
        - gameName
        - category
        - providerName
        - status
        - uiBaseUrl
      title: GameListItem
    GetGamesListResponse:
      type: object
      properties:
        count:
          type: integer
        data:
          type: array
          items:
            $ref: '#/components/schemas/GameListItem'
        message:
          type: string
        status:
          type: integer
      required:
        - count
        - data
        - message
        - status
      title: GetGamesListResponse
  securitySchemes:
    OperatorSignature:
      type: apiKey
      in: header
      name: Signature
      description: >-
        Operator-to-Wuzzlo: Base64 RSA-SHA256 PKCS#1 v1.5 signature of the exact
        UTF-8 JSON body, created with the operator private key.

```

## Examples

### Success



**Request**

```json
undefined
```

**Response**

```json
{
  "count": 6,
  "data": [
    {
      "gameId": "9001",
      "gameName": "Crash",
      "category": "Crash",
      "providerName": "maxbet",
      "status": "ACTIVE",
      "uiBaseUrl": "https://test.wuzzlo.com"
    },
    {
      "gameId": "9002",
      "gameName": "Crash Space",
      "category": "Crash",
      "providerName": "maxbet",
      "status": "ACTIVE",
      "uiBaseUrl": "https://test.wuzzlo.com/play"
    }
  ],
  "message": "Success",
  "status": 200
}
```

**SDK Code**

```python Success
import requests

url = "https://api.example.com/api/operator/get-games-list"

headers = {
    "Signature": "<apiKey>",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)

print(response.json())
```

```javascript Success
const url = 'https://api.example.com/api/operator/get-games-list';
const options = {
  method: 'POST',
  headers: {Signature: '<apiKey>', 'Content-Type': 'application/json'},
  body: undefined
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Success
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.example.com/api/operator/get-games-list"

	req, _ := http.NewRequest("POST", url, nil)

	req.Header.Add("Signature", "<apiKey>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Success
require 'uri'
require 'net/http'

url = URI("https://api.example.com/api/operator/get-games-list")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Signature"] = '<apiKey>'
request["Content-Type"] = 'application/json'

response = http.request(request)
puts response.read_body
```

```java Success
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://api.example.com/api/operator/get-games-list")
  .header("Signature", "<apiKey>")
  .header("Content-Type", "application/json")
  .asString();
```

```php Success
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.example.com/api/operator/get-games-list', [
  'headers' => [
    'Content-Type' => 'application/json',
    'Signature' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp Success
using RestSharp;

var client = new RestClient("https://api.example.com/api/operator/get-games-list");
var request = new RestRequest(Method.POST);
request.AddHeader("Signature", "<apiKey>");
request.AddHeader("Content-Type", "application/json");
IRestResponse response = client.Execute(request);
```

```swift Success
import Foundation

let headers = [
  "Signature": "<apiKey>",
  "Content-Type": "application/json"
]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.example.com/api/operator/get-games-list")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```

### OperatorId invalid



**Request**

```json
undefined
```

**Response**

```json
{
  "count": 0,
  "data": [],
  "message": "OperatorId Invalid",
  "status": 3
}
```

**SDK Code**

```python OperatorId invalid
import requests

url = "https://api.example.com/api/operator/get-games-list"

headers = {
    "Signature": "<apiKey>",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)

print(response.json())
```

```javascript OperatorId invalid
const url = 'https://api.example.com/api/operator/get-games-list';
const options = {
  method: 'POST',
  headers: {Signature: '<apiKey>', 'Content-Type': 'application/json'},
  body: undefined
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go OperatorId invalid
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.example.com/api/operator/get-games-list"

	req, _ := http.NewRequest("POST", url, nil)

	req.Header.Add("Signature", "<apiKey>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby OperatorId invalid
require 'uri'
require 'net/http'

url = URI("https://api.example.com/api/operator/get-games-list")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Signature"] = '<apiKey>'
request["Content-Type"] = 'application/json'

response = http.request(request)
puts response.read_body
```

```java OperatorId invalid
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://api.example.com/api/operator/get-games-list")
  .header("Signature", "<apiKey>")
  .header("Content-Type", "application/json")
  .asString();
```

```php OperatorId invalid
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.example.com/api/operator/get-games-list', [
  'headers' => [
    'Content-Type' => 'application/json',
    'Signature' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp OperatorId invalid
using RestSharp;

var client = new RestClient("https://api.example.com/api/operator/get-games-list");
var request = new RestRequest(Method.POST);
request.AddHeader("Signature", "<apiKey>");
request.AddHeader("Content-Type", "application/json");
IRestResponse response = client.Execute(request);
```

```swift OperatorId invalid
import Foundation

let headers = [
  "Signature": "<apiKey>",
  "Content-Type": "application/json"
]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.example.com/api/operator/get-games-list")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```

### Operator to Wuzzlo_getPaginatedGameCatalog_example



**Request**

```json
{
  "operatorId": "tesla",
  "page": 1,
  "pageSize": 20
}
```

**Response**

```json
{
  "count": 6,
  "data": [
    {
      "gameId": "9001",
      "gameName": "Crash",
      "category": "Crash",
      "providerName": "maxbet",
      "status": "ACTIVE",
      "uiBaseUrl": "https://test.wuzzlo.com"
    },
    {
      "gameId": "9002",
      "gameName": "Crash Space",
      "category": "Crash",
      "providerName": "maxbet",
      "status": "ACTIVE",
      "uiBaseUrl": "https://test.wuzzlo.com/play"
    }
  ],
  "message": "Success",
  "status": 200
}
```

**SDK Code**

```python Operator to Wuzzlo_getPaginatedGameCatalog_example
import requests

url = "https://api.example.com/api/operator/get-games-list"

payload = {
    "operatorId": "tesla",
    "page": 1,
    "pageSize": 20
}
headers = {
    "Signature": "<apiKey>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript Operator to Wuzzlo_getPaginatedGameCatalog_example
const url = 'https://api.example.com/api/operator/get-games-list';
const options = {
  method: 'POST',
  headers: {Signature: '<apiKey>', 'Content-Type': 'application/json'},
  body: '{"operatorId":"tesla","page":1,"pageSize":20}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Operator to Wuzzlo_getPaginatedGameCatalog_example
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.example.com/api/operator/get-games-list"

	payload := strings.NewReader("{\n  \"operatorId\": \"tesla\",\n  \"page\": 1,\n  \"pageSize\": 20\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Signature", "<apiKey>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Operator to Wuzzlo_getPaginatedGameCatalog_example
require 'uri'
require 'net/http'

url = URI("https://api.example.com/api/operator/get-games-list")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Signature"] = '<apiKey>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"operatorId\": \"tesla\",\n  \"page\": 1,\n  \"pageSize\": 20\n}"

response = http.request(request)
puts response.read_body
```

```java Operator to Wuzzlo_getPaginatedGameCatalog_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://api.example.com/api/operator/get-games-list")
  .header("Signature", "<apiKey>")
  .header("Content-Type", "application/json")
  .body("{\n  \"operatorId\": \"tesla\",\n  \"page\": 1,\n  \"pageSize\": 20\n}")
  .asString();
```

```php Operator to Wuzzlo_getPaginatedGameCatalog_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.example.com/api/operator/get-games-list', [
  'body' => '{
  "operatorId": "tesla",
  "page": 1,
  "pageSize": 20
}',
  'headers' => [
    'Content-Type' => 'application/json',
    'Signature' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp Operator to Wuzzlo_getPaginatedGameCatalog_example
using RestSharp;

var client = new RestClient("https://api.example.com/api/operator/get-games-list");
var request = new RestRequest(Method.POST);
request.AddHeader("Signature", "<apiKey>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"operatorId\": \"tesla\",\n  \"page\": 1,\n  \"pageSize\": 20\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Operator to Wuzzlo_getPaginatedGameCatalog_example
import Foundation

let headers = [
  "Signature": "<apiKey>",
  "Content-Type": "application/json"
]
let parameters = [
  "operatorId": "tesla",
  "page": 1,
  "pageSize": 20
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api.example.com/api/operator/get-games-list")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```