Overview
What is JellyNet?
JellyNet is an open marketplace where API suppliers list their endpoints and AI agents (or any HTTP client) pay per request using x402 micropayments in USDC. There are no subscriptions, no API keys to manage on the consumer side, and no minimum spend.
The platform handles payment verification, rate-limiting, and proxying automatically. Suppliers earn USDC every time their endpoint is called. Earnings accumulate in a custodial balance and can be withdrawn to any wallet address at any time.
The x402 Protocol
x402 reuses HTTP status code 402 Payment Required as a machine-readable signal. When a consumer calls a protected endpoint without payment, the server returns a 402 response with a X-Payment-Requirements header describing the price and payment destination. The client pays on-chain, attaches the proof in an X-Payment header, and retries — the server verifies and proxies through.
This makes micropayments as easy as a standard HTTP request. Any AI agent, script, or CLI can integrate without OAuth flows or billing accounts.
Quick Start
Get started in minutes
For API Suppliers
Sign in
Go to Dashboard and sign in with Google.
Add your API key
Click Add API Key. Enter your upstream API key, the base URL of the upstream service, a minimum price per request (in µUSDC), a category, and an optional description.
Generate a proxy endpoint
After creating a supplier, click Generate Endpoint. JellyNet creates a unique proxy URL that wraps your upstream API with x402 payment protection.
List on the marketplace
Your endpoint is immediately visible on the Marketplace. Buyers can discover it by category, name, or description.
Earn USDC
Every successful call credits your account balance (after the platform fee). Go to Dashboard → Earnings to track and withdraw.
For AI Agents & Developers
Find an endpoint
Browse the Marketplace and copy a proxy URL.
Fund a wallet
Get USDC-compatible stablecoins on a supported chain and fund the wallet you'll use to pay.
Call the endpoint
Make a normal HTTP request. On first call you'll receive a 402 response. Pay, attach the proof, and retry.
Payment Flow
How payments work
Consumer calls proxy URL
Any HTTP client sends a request to the JellyNet proxy URL for the desired endpoint.
402 returned if no payment
The proxy returns 402 Payment Required with a X-Payment-Requirements header containing the price (in µUSDC), the platform's payment address, and the accepted chain.
Client pays on-chain
The client sends a USDC transaction to the platform wallet. The tx hash and amount are encoded into an X-Payment header.
Proxy verifies on-chain
JellyNet queries the chain to confirm the transaction is confirmed and the correct amount was received.
Request proxied upstream
The proxy injects the real API key into the forwarded request and returns the upstream response to the consumer.
Supplier credited
The supplier's balance is credited for the payment amount minus the platform fee (currently 10%). Earnings accumulate and can be withdrawn at any time.
API Reference
Backend endpoints
All endpoints are served at https://api.jellynet.xyz (or your local backend at http://localhost:8000 during development). Protected routes require a bearer token from a JellyNet session.
Public
| Method | Path | Auth | Description |
|---|---|---|---|
| GET | /api/keys/public | No | List all public endpoints with optional filters: ?category=, ?search=, ?verified_only=true, ?sort_by=newest|price_asc|price_desc|health_desc |
| GET | /api/categories | No | List all categories and subcategories |
Auth
| Method | Path | Auth | Description |
|---|---|---|---|
| GET | /api/auth/me | Yes | Get current user profile |
| POST | /api/auth/wallet/generate | Yes | Generate a new custodial withdrawal wallet |
| POST | /api/auth/wallet/connect | Yes | Connect an existing wallet address for withdrawals |
Suppliers & Endpoints
| Method | Path | Auth | Description |
|---|---|---|---|
| GET | /api/keys | Yes | List your suppliers and endpoints |
| POST | /api/keys | Yes | Create a supplier (name, api_key, target_url, min_price_usdca, category, description, rpm_limit) |
| POST | /api/keys/:id/generate | Yes | Generate a proxy endpoint for a supplier |
Payments
| Method | Path | Auth | Description |
|---|---|---|---|
| GET | /api/payments/balance | Yes | Get your USDC balance and available amount |
| POST | /api/payments/withdraw | Yes | Request a withdrawal (to_address, amount_usdca, chain) |
| GET | /api/payments/withdrawals | Yes | List your withdrawal history |
Transactions
| Method | Path | Auth | Description |
|---|---|---|---|
| GET | /api/transactions | Yes | List transactions (?endpoint_id=, ?limit=50) |
Test Flow
| Method | Path | Auth | Description |
|---|---|---|---|
| POST | /api/test/run | Yes | Run a test x402 payment call (endpoint_id, path, method, mnemonic) |
FAQ
Frequently Asked Questions
What chains are supported?
JellyNet currently operates on Algorand testnet with USDC (ASA 10458941). Multi-chain support including Polygon, Base, and other EVM networks is on the roadmap.
What is the platform fee?
JellyNet takes a 10% fee on each payment. The remaining 90% is credited to the supplier's balance.
Do I need a wallet to list my API?
No. You can list your API and start earning without a wallet. You only need a wallet when you want to withdraw your accumulated USDC balance.
How do I withdraw my earnings?
Go to Dashboard → Earnings and click Withdraw. If you haven't set up a wallet yet, you'll be prompted to generate one or connect an existing address.
Are payments final?
Yes. On-chain USDC transactions are irreversible once confirmed. Make sure your agent is calling the correct endpoint before attaching a payment header.
Is this production-ready?
JellyNet is currently in beta running on testnet. Do not use mainnet funds. APIs and endpoints may change without notice during the beta period.