/v1/provider/list

Retrieve a list of game providers

GET /v1/provider/list

Returns a list of available game providers based on optional query parameters. This endpoint helps operators discover which providers can be integrated into their systems.

Headers

Name
Value

Authorization

Bearer <API_TOKEN>

Content-Type

application/json

Accept

application/json

No Parameters

Response

{
  "success": true,
  "message": "OK",
  "data": [
    {
      "providerId": 1,
      "providerName": "Pragmatic Play",
      "logo": "https://cdn.example.com/logos/pragmaticplay.png",
      "status": 1
    }
  ]
}
Key
Data Type
Description

success

boolean

Indicates whether the request was processed successfully

message

string

Result message of the request

data

array

List of game providers available to the operator

data[].providerId

number

Unique identifier of the provider

data[].providerName

string

Display name of the provider

data[].logo

string (URL)

URL of the provider’s logo image

data[].status

number

Provider status (e.g., 1 = active, 0 = inactive)

Last updated