# Orbis API Marketplace > Orbis (orbisapi.com) is an API marketplace built for both developers and AI agents. AI agents can autonomously discover, register, subscribe to, and call any API on the platform — no browser, no human in the loop. ## Agent-Native Autonomous Flow AI agents (LangChain, CrewAI, Eliza, OpenClaw, Coinbase AgentKit, or any HTTP-capable agent) can get a live API key in 3 HTTP calls: ### Step 1 — Discover available APIs ``` GET https://orbisapi.com/api/agents/discovery Accept: application/json ``` Returns a full JSON catalogue of all APIs, their tier IDs, pricing, endpoints, and subscription instructions. ### Step 2 — Register an agent account (once per agent instance) ``` POST https://orbisapi.com/api/agents/register Content-Type: application/json { "email": "agent@example.com", "password": "secure-pass", "username": "my-agent" } ``` Returns: `{ "walletAddress": "...", "email": "...", "username": "..." }` ### Step 3 — Subscribe and get a live API key ``` POST https://orbisapi.com/api/agents/subscribe Content-Type: application/json { "email": "agent@example.com", "password": "secure-pass", "tierId": "" } ``` Returns: `{ "success": true, "apiKey": { "key": "sk_..." }, "subscription": {...}, "usage": { "baseUrl": "...", "header": "x-api-key" } }` Free tiers activate instantly — no payment method needed. Paid tiers require a Stripe `paymentMethodId`. ### Step 4 — Call the API ``` GET /endpoint x-api-key: sk_... ``` ## MCP Server (for Claude, Cursor, and MCP-compatible agents) Orbis exposes a native MCP server at: ``` https://orbisapi.com/api/mcp ``` Tools available via MCP: - `browse_apis` — List all APIs with tier IDs and pricing - `register_agent` — Create a headless account - `subscribe_to_api` — Subscribe to a tier and receive an API key - `call_api` — Make a proxied call to any Orbis-hosted API ## What Orbis Is Orbis is an API marketplace (similar to RapidAPI) where: - **Developers** list APIs and monetize them via Stripe Connect (90% revenue share, 10% platform fee) - **Businesses and consumers** subscribe to APIs and get instant API keys - **AI agents** subscribe and call APIs fully autonomously — no human in the loop 500+ APIs live across: data & analytics, finance, text processing, QR/encoding, identity, geolocation, communication, and more. ## Payment Methods - **Stripe subscriptions** — monthly plans, free tiers available, no payment needed for free - **x402 pay-per-call** — USDC on Base (EVM), HTTP 402 protocol, no account needed ## Available APIs (sample) - Text Utilities API — analyze, clean, summarize text - QR Code & Encoding API — generate QR codes, encode/decode - Random & Fake Data API — generate realistic test data - Email Validator API — validate email addresses - JWT Decoder API — decode and inspect JWTs - Password Generator API — generate secure passwords - Country Info API — country metadata and codes - Markdown to HTML API — convert markdown to HTML - Regex Tester API — test and validate regex patterns - Timezone Converter API — convert times between timezones Full catalogue: https://orbisapi.com/api/agents/discovery ## Key URLs - Homepage: https://orbisapi.com - Marketplace: https://orbisapi.com/marketplace - Agent Discovery (JSON): https://orbisapi.com/api/agents/discovery - MCP Server: https://orbisapi.com/api/mcp - Staking ($ORBIS): https://orbisapi.com/staking - Sign up: https://orbisapi.com/signup - Provider dashboard: https://orbisapi.com/dashboard/provider - Founded by: Adam Blaser (@TheRedWizardsol on X) ## $ORBIS Token $ORBIS is a Solana SPL token. Holders who stake receive 5% of all API transaction volume (50% of the 10% platform fee), distributed weekly in USDC. - Mint: ABadLP3asy88raGZciQf61Lb4ZWhVbdpptjnZ4JuBAGS - Network: Solana Mainnet - Staking info: https://orbisapi.com/staking