This API request enables the operator to get the bet values of promotional freespins(PFS)
PFSBetValues() Request
Type | Input |
---|---|
HTTP Method | POST |
API URL | https://<API_BASE_URL>/more/pfs-bet-values/ |
Headers | "Content-Type": "application/json" |
POST Parameters | json object e.g.: { |
Parameters | Type | Description |
---|---|---|
api_key | String | API Key allocated to each front-end |
game_id (optional) | Integer | Game 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) | String | 3 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
]
}
]
}