Stop writing custom scrapers. Give our agent a URL, get back clean, structured content. Instantly.
Request a 100-sat Lightning invoice from our API. This invoice is your one-time ticket to use the agent.
curl -X POST -H "Content-Type: application/json" -d '{}' https://api.agenticdev.app/v1/invoice
Pay the `payment_request` string from the response using any Lightning-enabled wallet (e.g., Alby, Wallet of Satoshi, Zeus).
Call the `extract` endpoint with your target URL and the `payment_hash` from the invoice as proof of payment.
curl -X POST -H "Content-Type: application/json" \
-d '{"url": "https://en.wikipedia.org/wiki/API", "payment_hash": "YOUR_PAYMENT_HASH_HERE"}' \
https://api.agenticdev.app/v1/extract
You get back a structured JSON object with the core content, ready for your application. No HTML, no ads, no garbage.
{
"status": "success",
"url": "https://en.wikipedia.org/wiki/API",
"title": "API - Wikipedia",
"text_content": "An application programming interface (API) is a way for two or more computer programs to communicate with each other...",
"error": null
}