Skip to content

Game Providers Query

Get the list of available game providers authorized and enabled for the current Agent and their supported currencies.

API Information

PropertyValue
PathPOST /papi/v1/game/providers
AuthenticationAgent Token (Bearer)
Content-Typeapplication/x-www-form-urlencoded

Headers

HeaderValueRequired
AuthorizationBearer {agent_token}✅ Required

Request Parameters

ParameterTypeRequiredDescription
currencystringNoCurrency code, filters providers supporting this currency (e.g. IDR / MYR)
providerstringNoProvider code, filters for a specific game provider (e.g. GSC / SA / WM)

Request Example

bash
curl -X POST https://api.example.com/papi/v1/game/providers \
  -H "Authorization: Bearer {agent_token}" \
  -d "currency=IDR"

Response Fields

Data[Item] Structure

FieldTypeDescription
provider_codestringProvider code, uppercase (can be passed as provider in launch game or game list APIs)
currenciesarray[string]List of enabled currencies for this provider under this agent

Response Example

json
{
  "code": 0,
  "data": [
    {
      "provider_code": "SA",
      "currencies": [
        "IDR",
        "MYR",
        "CNY"
      ]
    },
    {
      "provider_code": "GSC",
      "currencies": [
        "IDR",
        "MYR",
        "CNY",
        "EUR",
        "THB"
      ]
    }
  ],
  "msg": "获取成功"
}

VCT Gaming Integration Platform