https://api.tilerank.com/api/tilerankapi/v1/clients/getdomainpages?domain=[domain]&api_key=[your api key]
Description
Returns a list of pages in a domain with a count of tiles found for each.
Response Data Parameters
Parameter |
Required |
Type |
Description |
error |
yes |
BOOLEAN |
|
message |
yes |
INT |
|
pages |
yes |
Array [ INT: page_id STRING: domain STRING: path INT: tiles ] |
Array of page objects |
Example Response
{
"error":false,
"message":"Success",
“pages”:
[
{
"page_id": 1,
"domain":"domain.com",
"path": "/path",
"tiles": 30
}
]
}
Example Error Response
{
"error":true,
"message":"Invalid API Key",
}