PFSBetValues () API

This API request enables the operator to get the bet values of promotional freespins(PFS)

PFSBetValues() Request

TypeInput
HTTP MethodPOST
API URLhttps://<API_BASE_URL>/more/pfs-bet-values/
Headers"Content-Type": "application/json"
POST Parametersjson object e.g.:
{
"api_key": "81CVjU3K81XwBoWn",
"game_id": 1032,
"currency": "EUR"
}
ParametersTypeDescription
api_keyStringAPI Key allocated to each front-end
game_id (optional)IntegerGame ID provided by the provider. If this parameter passes into the request, API will return all currencies bet values for the requested game ID.
currency (optional)String3 letter ISO currency symbol. If this parameter passes into the request, API will return all bet values for all games for the requested currency.

PFSBetvalues() Response & Example

{
    "result": [
        {
            "game_id": 1032,
            "game_name": "twindragons",
            "currency": "EUR",
            "bet_values": [
                10,
                20,
                50,
                100,
                200
            ]
        }
    ]
}