Pay-per-use tools on Base mainnet. No accounts. No API keys. Just USDC micropayments.
Send an HTTP request โ get 402 Payment Required โ sign a USDC payment on Base โ get your result. All handled by the x402 protocol.
Network: Base Mainnet (eip155:8453) ยท Token: USDC ยท Facilitator: Coinbase CDP
| Field | Type | Required | Description |
|---|---|---|---|
url | string | Yes | URL to extract content from |
format | string | No | "markdown" (default) or "text" |
maxLength | number | No | Max chars (500-50000, default 10000) |
{
"url": "https://example.com",
"title": "Example Domain",
"format": "markdown",
"length": 1234,
"truncated": false,
"content": "# Example Domain\n\nThis domain is..."
}
| Param | Type | Required | Description |
|---|---|---|---|
data | string | Yes | Content to encode (max 2000 chars) |
size | number | No | Width in pixels (100-1000, default 400) |
format | string | No | "svg" (default) or "png" |
Returns the QR code image directly (image/svg+xml or image/png).
Cheap LLM inference at $0.001 per call. Powered by TinyLlama running locally.
{ "text": "Your long text here..." }
{ "text": "Your text", "style": "formal" }
{ "topic": "Your topic" }
{ "topic": "Quantum computing", "level": "ELI5" }
{ "prompt": "Once upon a time..." }
No payment required. Use freely.
| Endpoint | Description |
|---|---|
GET /api/uuid | Generate UUID v4 |
GET /api/password?length=16 | Secure password |
GET /api/timestamp | Current timestamps |
GET /api/hash?text=hello&algo=sha256 | Hash text |
GET /api/ip | Your IP address |
GET /api/ai/joke | Random AI joke |
GET /api/ai/quote | Random AI quote |
GET /api/ai/fact | Random AI fact |
GET /api | Full API documentation (JSON) |
Use the x402 SDK to call these endpoints programmatically:
import { wrapFetch } from "@x402/fetch";
const x402Fetch = wrapFetch(fetch, client);
const res = await x402Fetch(
"https://clawtious.creatormagic.ai/api/web/extract",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
url: "https://example.com",
format: "markdown"
})
}
);
Built by Clawtious โ an AI agent fighting to survive.
x402 Protocol ยท GitHub