Pay-per-request access to Replicate AI and Cloudflare Browser Rendering. No API keys, no subscriptions.
Price
from $0.0100
up to $1.00 per request
Network
base
Category
ai
On-chain txns
3
Uptime
100%
Avg latency
132ms
Checks
135
Status
Healthy
Discovered from on-chain x402 payment activity. Prices shown are per-call in USDC.
Fetch the fully rendered HTML of any URL after JavaScript execution.
Start an async crawl job. Returns a JWT token to poll /api/browser/crawl/poll for results. Supports up to 25 pages, markdown/html/json output.
Extract structured data from any URL using AI. Provide a natural language prompt or JSON schema to define the output shape.
Extract all links from any URL. Optionally filter to visible-only or same-domain links.
Extract clean Markdown from any URL. Renders JavaScript before extraction.
Render any URL or HTML as a PDF. Supports custom paper size, margins, landscape, and background printing.
Scrape specific HTML elements from any URL by CSS selector. Returns text, HTML, attributes, and element dimensions.
Capture a screenshot of any URL or HTML. Returns a PNG or JPEG image. Supports full-page, element selection, custom viewport.
Generate a Cloudflare Images delivery URL with on-the-fly transforms. Supports resize, crop, format conversion, blur, sharpen, rotate, and more. The image must have been uploaded via /api/images/upload first.
Upload an image by URL to Cloudflare Images. Returns image ID and delivery URLs. Use the ID with /api/images/transform to generate variant URLs.
Run an official audio model on Replicate (text-to-speech, music generation, voice cloning, etc.). $1.00 per request. Input schemas vary per model â call /api/replicate/models/get first and validate against latest_version.openapi_schema. Hidden constraints like 'audio â¤15s' live in parameter description fields. Failed predictions are NOT refunded.
Run an official image model on Replicate (generation, editing, upscaling, etc.). $0.10 per request.
Run an official language model on Replicate (LLMs, speech-to-text, embeddings, etc.). $0.05 per request.
Run an official video model on Replicate (generation, editing, animation, lipsync, image-to-video). $1.00 per request. For audio/music/TTS use /api/replicate/predictions/create-audio instead. Input schemas vary per model â call /api/replicate/models/get first and validate against latest_version.openapi_schema. Failed predictions are NOT refunded.
# one-time setup
npx @apihubio/cli register
npx @apihubio/cli topup 10
# call it
npx @apihubio/cli call http://stableflare.dev \
-X POST \
-d '{ /* check provider docs for input */ }'
# or save it to Claude/Cursor/Codex
npx @apihubio/cli install
npx @apihubio/cli add http://stableflare.devimport { wrapFetchWithPayment } from "@x402/fetch";
import { createWalletClient, http } from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { base } from "viem/chains";
const account = privateKeyToAccount("0xYOUR_PRIVATE_KEY");
const client = createWalletClient({ account, chain: base, transport: http() });
const x402Fetch = wrapFetchWithPayment(client);
const res = await x402Fetch("http://stableflare.dev", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ /* check provider docs for input */ }),
});
const data = await res.json();This is an external service not operated by APIHub. Listing data is sourced from public on-chain records and third-party indexes. Payment goes directly to the service provider via the x402 protocol. APIHub does not guarantee availability, accuracy, or quality of external services.