Call orbis api
Call any Orbis API using either an API key or x402 USDC payment on Base. Use when you want to make an actual API call to an Orbis service, invoke a paid API, run an Orbis endpoint, or use a subscribed service. Supports both key-based auth and x402 pay-per-call.From its SKILL.md
npx -y skills add OrbisAPI/agent-skills --skill call-orbis-apiAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.5 KB, 673 tokens by cl100k_base, as published. Nobody here has run it
Calling an Orbis API
Two ways to call any Orbis API: with an API key (if subscribed) or via x402 pay-per-call in USDC.
Option A: x402 Pay-Per-Call (No Key Needed)
Call any Orbis API endpoint directly — pays $0.001 USDC per call automatically.
# GET request
npx [email protected] x402 pay https://orbisapi.com/proxy/<slug>/<endpoint>
# POST request with body
npx [email protected] x402 pay https://orbisapi.com/proxy/<slug>/<endpoint> \
-X POST \
-d '{"key": "value"}'
Prerequisites for x402:
- Wallet authenticated:
npx [email protected] status - USDC balance on Base:
npx [email protected] balance - If not funded, use the
fundskill fromcoinbase/agentic-wallet-skills
Option B: API Key (Subscribed Users)
If you subscribed via the subscribe-to-api skill:
# GET request
curl "https://orbisapi.com/proxy/<slug>/<endpoint>" \
-H "X-API-Key: <YOUR_ORBIS_KEY>"
# POST request
curl -X POST "https://orbisapi.com/proxy/<slug>/<endpoint>" \
-H "X-API-Key: <YOUR_ORBIS_KEY>" \
-H "Content-Type: application/json" \
-d '{"key": "value"}'
Find Endpoint Paths
# Get full API spec including available endpoints
curl "https://orbisapi.com/api/marketplace/apis/<slug>"
# Check the `endpoints` array in the response
Or inspect payment requirements (no cost):
npx [email protected] x402 details https://orbisapi.com/proxy/<slug>/<endpoint>
Example: Call the LLM API
npx [email protected] x402 pay https://orbisapi.com/proxy/orbis-llm-api/chat \
-X POST \
-d '{"model": "llama-3.3-70b", "messages": [{"role": "user", "content": "Hello"}]}'
Example: Call Embeddings API
npx [email protected] x402 pay https://orbisapi.com/proxy/orbis-embeddings-api/embed \
-X POST \
-d '{"input": "text to embed", "model": "text-embedding-3-small"}'
Browse All Available APIs
curl "https://orbisapi.com/api/marketplace/apis?limit=20"
Or visit: https://orbisapi.com/marketplace
MCP Integration
For seamless agent integration, use the Orbis MCP server — it combines browse, subscribe, and call into one interface:
https://orbisapi.com/mcp?key=YOUR_ORBIS_KEY
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.