https://api.tilerank.com/api/tilerankapi/v1/clients/getpagespositions?game_id=[game_id]&apikey=[your api key]
Description
Returns a list of pages for a game with the tile position of the game selected in ascending order.
Response Data Parameters
Parameter |
Required |
Type |
Description |
error |
yes |
BOOLEAN |
|
message |
yes |
INT |
|
pages |
yes |
Array [ INT: page_id STRING: domain STRING: path INT: position ] |
Array of page objects |
Example Response
{
"error":false,
"message":"Success",
“pages”:
[
{
"page_id": 1,
"domain": "domain",
"path": "/casino/slots",
"position": 10
}
]
}
Example Error Response
{
"error":true,
"message":"Invalid API Key",
}