get_site_moves¶
List site move requests submitted for a site.
Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
site_url |
string | Yes | The URL of the site |
Response¶
{
"siteUrl": "https://www.example.com/",
"rowCount": 1,
"rows": [
{
"date": "2026-01-15T00:00:00Z",
"moveScope": "Domain",
"moveType": "Local",
"sourceUrl": "https://old.example.com/",
"targetUrl": "https://www.example.com/"
}
],
"queriedAt": "2026-02-21T19:00:00Z"
}
Example Prompts¶
"Have I submitted any site moves for this domain?"
Notes¶
moveScopeisDomain,Host, orDirectory.moveTypeisLocal(within Bing's index scope) orGlobal(across markets).- Use
submit_site_moveto request a new one. - This endpoint has been observed returning an HTTP 404 from Bing instead of a normal response, which may indicate it has been deprecated or changed since it was documented. The tool surfaces this as a clean error rather than crashing.