> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify Site

> Asks Bing to verify ownership of a site already added to the account

Asks Bing to verify ownership of a site already added to the account. Bing's verification meta tag, XML file, or DNS record must be live first. Returns whether verification succeeded; a false result is a normal outcome, not an error.

|                       |                              |
| --------------------- | ---------------------------- |
| **App**               | Bing Webmaster Tools         |
| **Operation ID**      | `bing_webmaster_verify_site` |
| **Type**              | Action                       |
| **Connection**        | `bing_webmaster` (required)  |
| **Credits per run**   | 1                            |
| **Agent / MCP tool**  | Yes                          |
| **Requires approval** | Yes (write operation)        |

## Inputs

| Field      | Type   | Required | Default | Description                                                                                                                                                                                                                                                                                       |
| ---------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `site_url` | string | Yes      | -       | Full URL of the site to verify, for example `https://example.com.` Typed rather than picked because the site picker only lists already-verified sites. The site must already be added to the account, and Bing's verification meta tag, XML file, or DNS record must be live before running this. |

## Output

**Type**: `Dict`

Returns the verification verdict for the site.

**Fields**: `status`, `site_url`, `is_verified`

**Example**:

```json theme={"dark"}
{
  "status": "verified",
  "site_url": "https://example.com",
  "is_verified": true
}
```
