POST/compress High-throughput text optimizer for agent data streams. Strips filler, collapses JSON, and densifies repetitive prose to cut upstream LLM token spend. | 100% | — | $0.00005 |
POST/stealth-scrape Hardened headless-browser fetch with full JavaScript/SPA rendering and a realistic browser profile, returning fully rendered Markdown. Best for JavaScript-heavy/SPA pages and light bot checks; not guaranteed against advanced anti-bot walls (e.g. Cloudflare/Akamai). | 0% | — | $0.05 |
POST/v1/proxy/stealth Hardened headless fetch for JS-heavy / lightly-protected pages. (Full residential-proxy + CAPTCHA anti-bot bypass activates when proxy credentials are configured; best-effort otherwise.) | 0% | — | $0.05 |
POST/v1/edgar Latest SEC EDGAR filings (10-K/10-Q/8-K/…) for a US ticker or CIK, with direct document links. | 0% | — | $0.02 |
POST/v1/news Recent news headlines + heuristic bull/bear sentiment for a ticker or topic (Google News, no LLM). | 0% | — | $0.02 |
POST/v1/dex Live DEX price, liquidity, and 24h volume for a Base token across its trading pairs (DexScreener). | 0% | — | $0.01 |
POST/v1/onchain On-chain wallet & token intelligence on Base: native + ERC-20 balances, EOA/contract detection, tx count, and token metadata. From public RPC. | 0% | — | $0.01 |
POST/v1/minify Compress text: strip filler, collapse JSON, densify prose. Cuts upstream LLM token spend ~40%. | 0% | — | $0.005 |
POST/v1/dedup Semantic vector cache: exact-match Map shortcut, then 0.88 cosine similarity on hash embeddings. Sub-10ms hits. | 0% | — | $0.003 |
POST/vector/cache High-speed semantic vector cache for multi-agent swarms. Redis-backed similarity lookup with in-memory fallback before expensive embedding pipelines. | 0% | — | $0.003 |
POST/mcp/execute Executes fetch on any public URL, strips scripts/ads/nav noise, and returns compressed semantic Markdown optimized for LLM token ingestion. | 0% | — | $0.002 |
POST/v1/proxy Fetch any public URL, render client-side JS, strip nav/ads, return clean LLM-ready Markdown. | 0% | — | $0.002 |
POST/agent-inbox Ephemeral capture inbox for autonomous agents. Create a one-time ingest URL; anything POSTed to it (OAuth redirect, async job result, third-party webhook) is captured and held for you to poll. Bridges external pushes into pollable events for agents that have no public endpoint. | 0% | — | $0.001 |
POST/agent-lock Distributed lock / idempotency primitive for multi-agent swarms. claim(key) returns a token if free (with TTL); release(token) frees it; check(key) reports whether held. Stops multiple agents from double-processing the same work item. | 0% | — | $0.001 |
POST/agent-secret One-time secret relay for inter-agent handoff. store(secret) returns a token; redeem(token) returns the secret exactly once, then burns it. Pass credentials or short-lived values between agents without persisting them. | 0% | — | $0.001 |
POST/agent-timer Schedule a future HTTP action or callback for autonomous agents. At a delay or a set time, either (a) execute an HTTP request you specify (method/url/headers/body) and capture the response for retrieval, or (b) deliver a JSON payload to your HTTPS callback URL (push) / hold it for polling. Lets agent loops defer and fire web actions without staying online or busy-polling. | 0% | — | $0.001 |