get_children_url_traffic_info
Retrieve traffic details for child URLs under a specific directory to analyze website performance and user engagement. Use site and directory URLs with pagination to extract segmented traffic data efficiently.
Instructions
Get traffic details for child URLs of a directory.
Args: site_url: The URL of the site url: The URL of the directory page: The page number of results to retrieve
Returns: List[UrlTrafficInfo]: List of traffic information for child URLs
Raises: BingWebmasterError: If child traffic information cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
self | Yes | ||
site_url | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 0,
"minimum": 0,
"title": "Page",
"type": "integer"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"url"
],
"title": "get_children_url_traffic_infoArguments",
"type": "object"
}