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

# Submit URLs

> Submits URLs to Bing for indexing (Bing's IndexNow-style direct submission)

Submits URLs to Bing for indexing (Bing's IndexNow-style direct submission). Handles one URL or many: a single URL uses the single-URL endpoint, more use batches of 500. Checks the site's remaining daily quota first and reports the quota left afterwards.

|                       |                              |
| --------------------- | ---------------------------- |
| **App**               | Bing Webmaster Tools         |
| **Operation ID**      | `bing_webmaster_submit_urls` |
| **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`            | DynamicAccount            | Yes      | -       | Select the site the URLs belong to.                                                                                                                                                                                                                                      |
| `urls`            | array of string or string | Yes      | -       | URLs to submit for indexing, one per line or comma-separated. Every URL must belong to the selected site. One URL uses Bing's single-URL endpoint, more than one is submitted in batches of 500. Submissions consume your site's daily and monthly URL submission quota. |
| `skip_over_quota` | boolean                   | No       | `False` | When the number of URLs exceeds the remaining daily quota: off (default) fails without submitting anything, on submits as many as the quota allows and reports the rest as skipped.                                                                                      |

## Output

**Type**: `Dict`

Returns the submitted and skipped URLs plus the daily and monthly quota Bing has left for the site.

**Fields**: `status`, `site`, `submitted_count`, `submitted_urls`, `skipped_count`, `skipped_urls`, `daily_quota_remaining`, `monthly_quota_remaining`

**Example**:

```json theme={"dark"}
{
  "status": "submitted",
  "site": "https://example.com",
  "submitted_count": 3,
  "daily_quota_remaining": 7,
  "monthly_quota_remaining": 118
}
```
