Quickstart
Pick the path that matches what you want to do now.
Option 1: Use SandBase in your AI tool
Choose this if you use Codex, Claude, Cursor, or Kiro and want more tools inside that app.
- Open Setup.
- Choose your AI tool.
- Pick Models, APIs, or Services.
- Run the setup command.
- Ask your AI tool to use the new capability.
For example, after adding a web search API, you can ask:
Research this company and give me a sourced customer brief.
Learn more: Setup.
Option 2: Call a Model or API
Choose this if you are adding one capability to your app.
Example Model call:
bash
curl https://api.sandbase.ai/v1/chat/completions \
-H "Authorization: Bearer sk-sb-YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek/deepseek-v4-flash",
"messages": [{"role": "user", "content": "Summarize this customer feedback."}]
}'Learn more: First API Call.
Option 3: Build an Agent
Choose this if the work has multiple steps or should be reused.
- Open Build Agent.
- Define the Agent instructions.
- Pick a Model.
- Add APIs and Skills.
- Test a run.
- Publish it or schedule it.
Learn more: Build Agent.
What to do next
- Store — find Models, APIs, Agents, and Skills
- Setup — install capabilities into AI tools
- Build Agent — create reusable Agents
- API Reference — integrate with code

