get_rank_and_traffic_stats¶
Get the headline daily clicks and impressions trend for a site.
Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
site_url |
string | Yes | The URL of the site |
Response¶
{
"siteUrl": "https://www.example.com/",
"rowCount": 3,
"rows": [
{
"date": "2026-02-18T00:00:00Z",
"clicks": 198,
"impressions": 5102
},
{
"date": "2026-02-19T00:00:00Z",
"clicks": 226,
"impressions": 5387
},
{
"date": "2026-02-20T00:00:00Z",
"clicks": 214,
"impressions": 5430
}
],
"queriedAt": "2026-02-21T19:00:00Z"
}
Example Prompts¶
"What's my overall Bing clicks and impressions trend over the last month?"
"Has my organic traffic from Bing gone up or down recently?"
Notes¶
- This is the site-wide daily total -- for a breakdown by query or page, see
get_query_statsandget_page_stats. - One row per day. The example above is truncated to 3 rows for readability -- a real response typically spans several weeks.
- There is no date range parameter -- Bing returns a fixed window server-side and this tool cannot request a specific period.