get_active_page_preview_blocks¶
List pages currently blocked from showing a preview (e.g. a thumbnail or content snippet) in Bing search results, along with the reason each was blocked.
Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
site_url |
string | Yes | The URL of the site |
Response¶
{
"siteUrl": "https://www.example.com/",
"rowCount": 1,
"blocks": [
{
"url": "https://www.example.com/private-preview",
"blockReason": "Other",
"submitDate": "2026-02-21T19:00:00Z"
}
],
"queriedAt": "2026-02-21T19:00:00Z"
}
Example Prompts¶
"Which of my pages have preview blocks active in Bing search results, and why?"
Notes¶
blockReasonis one ofAdultContent,Copyright,IllegalContent, orOther.- Bing's real record also includes an internal action/refresh-reason state used to track review status; those aren't surfaced here since their exact meaning isn't independently confirmed.
- Use
add_page_preview_block/remove_page_preview_blockto manage this list.