Skip to main content
Use this endpoint to retrieve all game providers that are enabled on your operator account. The response includes each provider’s unique ID, display name. You’ll use the providerId values returned here in subsequent calls such as List Games.

Request

GET /v1/provider/list

Headers

NameValue
AuthorizationBearer <API_TOKEN>
Content-Typeapplication/json
Acceptapplication/json
This endpoint takes no query parameters or request body.

Example Request

curl --request GET \
  --url https://api.igamingace.com/v1/provider/list \
  --header "Authorization: Bearer <API_TOKEN>" \
  --header "Accept: application/json" \
  --header "Content-Type: application/json"

Response

Example Response

{
  "success": true,
  "message": "OK",
  "data": [
    {
      "providerId": 1,
      "providerName": "Pragmatic Play"
    },
    {
      "providerId": 2,
      "providerName": "PG Soft"
    }
  ]
}

Response Fields

success
bool
Indicates whether the request was processed successfully.
message
string
Result message of the request (e.g., "OK").
data
array
List of game providers available to your operator account.