What pay per crawl means
Pay per crawl adds a third option to the relationship between a website and an AI crawler. Until now there were two: allow access with no conditions, or block it with robots.txt. Pay per crawl introduces «allow, but only if paid for».
The technical mechanism is the HTTP status code 402, Payment Required. This code has existed since the earliest HTTP standards, originally intended for some micropayment scheme that never became widespread, and for decades it has barely been used in practice. Pay per crawl brings it back: when a crawler requests a page with this control enabled, the server responds with 402 instead of delivering the content, and attaches the price of that visit in a header. The crawler can repeat the request accepting payment, or give up.
It is not yet a W3C or IETF standard with broad adoption: it is a model, implemented as of this writing mainly by one large web infrastructure provider, and its exact behaviour, meaning headers, signature, currency, depends on how each provider implements it. For a site, this changes the logic that robots.txt made familiar: instead of one fixed rule for everyone, a price list emerges that can differ crawler by crawler.