Agentic

On-Demand AI Agents. No Subscriptions. No Bullshit.
Just Pay-Per-Use with Lightning.

Our First Agent: The Extractor

Stop writing custom scrapers. Give our agent a URL, get back clean, structured content. Instantly.

Get Started in 60 Seconds

Step 1: Get an Invoice

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

Step 2: Pay the Invoice

Pay the `payment_request` string from the response using any Lightning-enabled wallet (e.g., Alby, Wallet of Satoshi, Zeus).

Step 3: Execute the Agent

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

The Result: Clean JSON

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
}