# bingbot

> Bing's only crawler, and therefore also the crawler behind Microsoft Copilot's grounding. Microsoft's documented way to keep search indexing while refusing generative reuse is the nocache / noarchive robots meta directive, not a separate user-agent.

| field | value |
|---|---|
| operator | Microsoft |
| category | Search engines |
| robots.txt token | `bingbot` |
| user-agent contains | `bingbot` |
| robots.txt | obeys robots.txt (documented) |
| verify by | published IP ranges |
| published IP ranges | https://www.bing.com/toolbox/bingbot.json |
| prefixes mirrored | 28 IPv4 / 0 IPv6 |
| operator docs | https://www.bing.com/webmasters/help/which-crawlers-does-bing-use-8c184ec0 |
| last reviewed | 2026-09-01 |

## What blocking it costs you

Very high and very wide: Bing, Copilot, DuckDuckGo and several assistants that resell Bing's index all lose you at once. Use nocache/noarchive rather than blocking.

## Full user-agent string

```
Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)
```

## Block it

```
User-agent: bingbot
Disallow: /
```

## Allow it

```
User-agent: bingbot
Allow: /
```

JSON: https://www.pathwren.workers.dev/crawler/bingbot.json · index: https://www.pathwren.workers.dev/llms.txt
