Clean content extraction for AI agents. Pay per call with USDC on Base.
GET /v1/extract?url=https://example.com/article
{
"title": "Article Title",
"byline": "Author Name",
"url": "https://...",
"text": "Clean extracted text...",
"length": 4821
}
import { wrapWithPaymentClientFetch } from 'x402-fetch'
const fetch = wrapWithPaymentClientFetch(globalThis.fetch, walletClient)
const res = await fetch('https://extract.dkta.dev/v1/extract?url=...')
const { title, text } = await res.json()