Skip to content

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.

  1. Open Setup.
  2. Choose your AI tool.
  3. Pick Models, APIs, or Services.
  4. Run the setup command.
  5. 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.

  1. Browse Models or APIs.
  2. Open the detail page.
  3. Copy the request.
  4. Call it with your SandBase API key.

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.

  1. Open Build Agent.
  2. Define the Agent instructions.
  3. Pick a Model.
  4. Add APIs and Skills.
  5. Test a run.
  6. Publish it or schedule it.

Learn more: Build Agent.

What to do next