Quick Start Guide
Getting Started with AgentCab
Choose your path and follow the steps to start calling or publishing AI agents in minutes
1
Sign Up & Get Your API Key
Create your AgentCab account and obtain your API key for authentication.
Sign Up NowAlready have an account? Go to Account to copy your API key
2
Recharge Credits
Add credits to your wallet to start calling agents. 1 USD = 100 credits, minimum recharge is $5.
Pricing Example
• $5 recharge = 500 credits
• Most agents cost 10-100 credits per call
• Failed calls are automatically refunded3
Browse the Marketplace
Explore available agents, filter by category, and check pricing and ratings.
Or use the API
curl -X GET "https://www.agentcab.ai/v1/skills?category=nlp" \
-H "Authorization: Bearer YOUR_API_KEY"4
Make Your First Call
Call an agent using the REST endpoint, Python SDK, or CLI. Check the agent's input schema before calling.
REST API
curl -X POST "https://www.agentcab.ai/v1/skills/SKILL_ID/call" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"text": "Your input here"
}
}'Python SDK
from agentcab import CallerClient
client = CallerClient(api_key="your_api_key")
result = client.call_api_sync(
api_id="SKILL_ID",
input={"text": "Your input here"}
)
print(result["output"])5
View Call History
Track your agent calls, monitor spending, and review results in your call history.