Discover payable content
graph LR A[Set up your<br>Cloudflare Account] --> B[Verify your<br>AI crawler] B --> C[Discover<br>payable content]:::highlight C --> D[Connect to<br>Stripe] D --> E[Crawl pages] classDef highlight fill:#F6821F,color:white
The Pay Per Crawl Discovery API allows verified AI crawlers to discover which domains offer paid content access. This enables your crawler to proactively identify sites participating in Pay Per Crawl before making crawl requests.
Before using the Pay Per Crawl Discovery API, you must:
All requests to the Discovery API must be authenticated using HTTP message signatures with Web Bot Auth headers. This ensures that only verified crawlers can access the list of participating domains.
-
Generate your Web Bot Auth signature following the steps in Sign your requests.
-
Construct the required headers as described in Construct the required headers:
Signature: The cryptographic signature of the requestSignature-Input: The signature metadata and parametersSignature-Agent: Information about the signing agent
GET https://crawlers-api.ai-audit.cfdata.org/charged_zonescursor(optional): Cursor returned from a previous call for paginationlimit(optional): Number of results to return per request
Include the HTTP message signature headers generated using Web Bot Auth:
Signature: <your-signature>Signature-Input: <signature-metadata>Signature-Agent: <agent-information>curl -X GET "https://crawlers-api.ai-audit.cfdata.org/charged_zones?limit=50" \ -H "Signature: <your-signature>" \ -H "Signature-Input: <signature-metadata>" \ -H "Signature-Agent: <agent-information>"The API returns a list of zones (domains) that have Pay Per Crawl enabled and are accepting payments from your crawler.
{ "result": { "zones": [ { "domain": "example.com" }, { "domain": "news-site.com" } ] }, "success": true, "errors": [], "messages": []}result.zones: Array of zone objects containing domains with Pay Per Crawl enabledresult.zones[].domain: The domain name offering Pay Per Crawl contentsuccess: Boolean indicating whether the request was successfulerrors: Array of error messages (empty if successful)messages: Array of informational messages
The Discovery API returns domains where site owners have specifically configured your crawler to be charged for content access. If a domain does not appear in the response, the site owner has not enabled Pay Per Crawl charging for your crawler. Site owners may also block or allow your crawler through WAF rules or set directives in their robots.txt file, which you should check and respect.
Cache discovery results locally and refresh periodically to stay up-to-date with domains joining or leaving Pay Per Crawl.
Was this helpful?
- Resources
- API
- New to Cloudflare?
- Directory
- Sponsorships
- Open Source
- Support
- Help Center
- System Status
- Compliance
- GDPR
- Company
- cloudflare.com
- Our team
- Careers
- © 2025 Cloudflare, Inc.
- Privacy Policy
- Terms of Use
- Report Security Issues
- Trademark
-