unclecode / unclecode/crawl4ai
Add Circle/x402 paid crawl endpoint for autonomous agents
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 83.9k
- Forks
- 8.7k
- Avg merge
- 3d 7h
- Merged PRs (30d)
- 11
Description
Proposal: add an optional Circle/x402 paid crawl endpoint for autonomous agents
I ran a static Circle/x402 readiness scan against Crawl4AI to see whether it could become an agent-payable service. Crawl4AI is a strong fit because agents already need on-demand crawling, extraction, and LLM-ready web data.
Readiness summary
- Score from the scan: 46/100 — good candidate, medium effort.
- The repo has meaningful primitives for crawling jobs, schemas, rate/concurrency concerns, and receipt/proof-like result concepts.
- I did not find x402 or Circle Agent Wallet/Marketplace-specific documentation.
- The scanner did not fully detect Crawl4AI's Python/FastAPI-style routes, but source references show Docker/API surfaces such as
/crawl,/crawl/job,/crawl/stream, and/llm/jobpatterns.
Why this is useful
AI agents often need one-off crawling or extraction without a long-lived API key, dashboard account, or shared credit pool. A Circle/x402 paid route would let an agent:
- Discover a paid crawl endpoint.
- Inspect price and input schema.
- Pay in USDC from a Circle Agent Wallet.
- Receive crawl output plus a receipt/proof object.
Suggested first implementation
Start with a narrow additive endpoint rather than changing the whole auth or deployment model:
POST /x402/crawl
-> return 402 Payment Required when no valid payment is supplied
-> verify x402 payment on Base/USDC
-> run the existing crawl/job pipeline
-> return { data, receipt }
A receipt shape for agent buyers could look like:
{
"receipt": {
"amount": "0.01",
"asset": "USDC",
"network": "base",
"resource": "POST /x402/crawl",
"requestHash": "sha256:...",
"resultHash": "sha256:...",
"jobId": "crawl_..."
}
}
Circle Agent Marketplace readiness docs
If this is interesting, I would also document:
- supported network(s)
- USDC price per crawl or per page
- request JSON schema
- response JSON schema
- receipt/proof object
- timeout and retry behavior
- how Circle Agent Wallet / x402 clients should pay
I generated this from Budcle, a small scanner for identifying Circle/x402 adoption gaps in open-source API projects: https://github.com/batikanor/Budcle
This is intentionally additive: existing Crawl4AI library usage, Docker deployment, and auth choices can remain unchanged while adding one agent-payable path for x402-capable clients.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the existing /crawl, /crawl/job, /crawl/stream, and /llm/job API entry points and the crawl/job pipeline they use. Review how request schemas, authentication, and results are handled before defining the additive /x402/crawl behavior. Done would include the paid route, payment verification, crawl output with a receipt, and documentation of supported networks, pricing, schemas, and retries.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- docker, fastapi, python
- Domain
- api, backend, payments
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Quiet
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100