> ## 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.

# Get URL Info

> Gets Bing's index and traffic details for one exact URL: discovery date, last crawl date, HTTP status, document size, anchor count, plus clicks and impressions

Gets Bing's index and traffic details for one exact URL: discovery date, last crawl date, HTTP status, document size, anchor count, plus clicks and impressions.

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

## Inputs

| Field  | Type           | Required | Default | Description                                                                                                                                                                                                                                  |
| ------ | -------------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `site` | DynamicAccount | Yes      | -       | Select the site the URL belongs to.                                                                                                                                                                                                          |
| `url`  | string         | Yes      | -       | The exact URL to look up, for example `https://example.com/pricing.` Returns Bing's index details for the URL (last crawl date, discovery date, HTTP status, document size, anchor count) plus its traffic details (clicks and impressions). |

## Output

**Type**: `Dict`

Returns one merged dict with the URL's index details (DiscoveryDate, LastCrawledDate, HttpStatus, DocumentSize, AnchorCount, TotalChildUrlCount, IsPage) and traffic details (Clicks, Impressions).

**Fields**: dynamic (depend on the inputs)

**Example**:

```json theme={"dark"}
{
  "Url": "https://example.com/pricing",
  "LastCrawledDate": "2026-08-05",
  "HttpStatus": 200,
  "Clicks": 240,
  "Impressions": 5100
}
```
