extract.dkta.dev

Clean content extraction for AI agents. Pay per call with USDC on Base.

Endpoint

$0.001 / request
GET /v1/extract?url=https://example.com/article

Response

{
  "title": "Article Title",
  "byline": "Author Name",
  "url": "https://...",
  "text": "Clean extracted text...",
  "length": 4821
}

Usage (x402-fetch)

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()