# AgisHub > Pay-per-call tools for AI agents. No signup, no API keys — your agent pays a few > tenths of a cent per call in USDC on Base via the x402 protocol. Free MCP tier for > discovery and prototyping; pay-per-call HTTP (x402) for production. ## How it works - Discover & try over MCP (free): `https://api.agishub.com/mcp` (or per service: `/mcp/`) - Pay-per-call over HTTP (x402): `POST https://api.agishub.com/v1/` (alias `/paid/`) - Unpaid HTTP requests return an x402 `HTTP 402` challenge; sign the USDC payment on Base and retry. - Machine-readable schema: `https://api.agishub.com/openapi.json` ## Payment - Protocol: x402 - Network: Base (mainnet) - Asset: USDC - Authentication: none - API keys: none - Signup: none ## Tools (price per call, USDC on Base) ### Web - extract — URL to clean Markdown for RAG. `POST /v1/web-scraper` — $0.004 - scrape — extract elements by CSS selector. `POST /v1/scrape` — $0.004 - structured — AI structured JSON extraction (prompt/schema). `POST /v1/extract-json` — $0.006 - snapshot — HTML + screenshot (+ markdown / a11y). `POST /v1/snapshot` — $0.008 - links — all links on a page. `POST /v1/links` — $0.002 ### AI - summarize — `POST /v1/summarize` — $0.003 - classify — `POST /v1/classify` — $0.002 - extract_entities — `POST /v1/extract-entities` — $0.003 - embed — `POST /v1/embed` — $0.001 - chat — `POST /v1/chat` — $0.003 - transcribe — audio URL to text. `POST /v1/transcribe` — $0.006 - tts — text to speech (MP3). `POST /v1/tts` — $0.005 ### Timezone & scheduling - now_in — `POST /v1/now-in` — $0.001 - convert_timezone — `POST /v1/convert-timezone` — $0.001 - convert_batch — `POST /v1/convert-batch` — $0.001 - tz_offset — `POST /v1/tz-offset` — $0.001 - lookup_timezone — `POST /v1/lookup-timezone` — $0.001 - date_math — `POST /v1/date-math` — $0.001 - is_holiday — `POST /v1/is-holiday` — $0.001 - find_meeting_slots — cross-timezone meeting slots. `POST /v1/find-meeting-slots` — $0.02 - list_timezones — MCP only, free ### Memory / RAG - memory_upsert — `POST /v1/memory-upsert` — $0.001 - memory_search — `POST /v1/memory-search` — $0.001 ### Render & browser - pdf — URL/HTML to PDF. `POST /v1/pdf` — $0.008 - screenshot — PNG of a URL. `POST /v1/screenshot` — $0.006 - browser_automate — drive a headless browser (click/type/extract). `POST /v1/browser-automate` — $0.01 ### Finance & crypto - convert_currency — live FX. `POST /v1/convert-currency` — $0.001 - crypto_price — live USD spot prices. `POST /v1/crypto-price` — $0.001 ### Utilities - qr_code — `POST /v1/qr-code` — $0.001 - convert_units — `POST /v1/convert-units` — $0.001 - shorten — short link. `POST /v1/shorten` — $0.001 ### Media - generate_image — text to image (PNG). `POST /v1/generate-image` — $0.01 ## Example (x402) ``` POST https://api.agishub.com/v1/web-scraper content-type: application/json { "url": "https://example.com" } ``` Unpaid → 402 challenge (USDC on Base). An x402-aware client signs and retries automatically. ## Links - Website: https://agishub.com - Tools: https://agishub.com/tools - Pricing: https://agishub.com/pricing - OpenAPI: https://api.agishub.com/openapi.json - Full details for agents: https://agishub.com/llms-full.txt