14 APIs live now

Pay-per-request APIs for AI agents

No accounts. No API keys. Just send a request and pay fractions of a cent with stablecoins on Tempo.

curl -X POST https://fractapi.xyz/api/scrape \

-H "Authorization: Payment ..."

-d '{ "url": "https://openai.com" }'


// Response [200 OK]

{

"success": true,

"cost": "$0.001",

"data": { ... }

}

High Performance APIs

Transparent pricing, zero commitment. 14 endpoints and growing.

language

Web Scraper

$0.001

Clean text or Markdown extraction from any URL with metadata and link harvesting.

POST /api/scrape
swap_horiz

Format Converter

New
$0.001

Markdown→HTML, CSV→JSON, YAML→JSON, XML→JSON. Instant format transforms.

POST /api/convert
auto_awesome

AI Summary

$0.003

Paragraph, bullets, or tweet-style summaries powered by GPT-4o-mini.

POST /api/summarize
translate

Translate

$0.003

AI-powered translation with auto language detection. Any language pair.

POST /api/translate
qr_code

QR Generator

$0.001

High-res PNG QR codes with configurable size and error correction.

POST /api/qr
sell

Meta Extractor

New
$0.001

OG tags, favicons, Twitter cards, and theme color from any URL.

POST /api/meta
lock

Hash Generator

New
$0.001

SHA-256, SHA-512, and MD5 hashing. Zero-dependency, instant results.

POST /api/hash
difference

Text Diff

New
$0.001

Compare two texts at line, word, or character level with patch output.

POST /api/diff
dataset

Mock Data

New
$0.001

Generate users, addresses, companies, UUIDs in 6 languages.

POST /api/placeholder
compress

Minify

New
$0.001

Compress CSS, JavaScript, and HTML code. Production-grade optimization.

POST /api/minify
monitor_heart

Uptime Check

New
$0.002

HTTP status, latency, SSL certificate expiry, and redirect chain.

POST /api/uptime
alternate_email

Email Validator

$0.002

MX record verification, disposable domain detection, format check.

POST /api/validate-email
dns

DNS Lookup

$0.001

Query A, AAAA, MX, NS, TXT, CNAME, SOA records via Google DNS.

POST /api/dns
travel_explore

WHOIS

$0.002

Domain registration data via RDAP — registrar, expiry, nameservers.

POST /api/whois
add_circle

More APIs coming

We're expanding our library every week. PDF generation, image resize, and more.

View All APIs

How it works

send

1. Send Request

Target any endpoint with your payload. No authentication headers required.

payments

2. Auto-pay

MPP returns 402. Your client signs a stablecoin micro-payment on Tempo automatically.

database

3. Get Response

Payment verified on-chain in sub-second. You receive data with a cryptographic receipt.

Transparent Pricing

Compare pay-per-request with traditional SaaS models.

FeatureFractAPITraditional SaaS
Monthly Minimum$0.00$29.00 – $99.00
Cost per RequestFrom $0.001Bundled / Tiered
API Key ManagementNot RequiredRequired
Setup Time< 1 Minute15+ Minutes
Payment MethodStablecoins (USDC)Credit Card
Available Endpoints14 live + 1 coming soon1 per vendor
On-chain ReceiptsEvery requestMonthly invoice

Build faster than ever

Integrate directly into your existing stack with SDKs or raw HTTP requests. Zero infrastructure overhead.

check_circleTypeScript, Python & Rust SDKs
check_circleSub-second on-chain settlement
check_circleAutomatic 402 → payment → retry flow
check_circleCryptographic receipts for every payment
import { Mppx, tempo } from "mppx/client";
import { privateKeyToAccount } from "viem/accounts";

Mppx.create({
  methods: [tempo({
    account: privateKeyToAccount(process.env.WALLET_KEY!),
  })],
});

const res = await fetch("https://fractapi.xyz/api/scrape", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ url: "https://example.com" }),
});

const data = await res.json();
console.log(data.data.title);

Try it Live

Same-origin requests to this deployment. On production, paid routes return MPP (HTTP 402) until payment is completed — use GET /api/test for a free smoke check, or run npm run dev locally to test handlers without MPP.

POST/api/scrape
$0.001
Response
Click 'Run Request' to see the response...

Ready to automate?

Build autonomous agents with pay-per-request APIs. No subscriptions, no rate limits, no API keys.