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
Name Value AuthorizationBearer <API_TOKEN>Content-Typeapplication/jsonAcceptapplication/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
Indicates whether the request was processed successfully.
Result message of the request (e.g., "OK").
List of game providers available to your operator account. Unique identifier of the provider. Use this value in the providerId parameter of other endpoints.
Display name of the provider (e.g., "Pragmatic Play").