⚡ Quickstart: Zero to first API call

  1. Create an API key in the Gravity settings dashboard.
  2. Run your first memory query:
    curl "https://developer.continua.ai/v1/memory/claims/search?q=coffee" \
      -H "Authorization: Bearer cai_YOUR_KEY_HERE"
    Required scope: memory:read
  3. Run the agent:
    curl -X POST https://developer.continua.ai/v1/agent/run \
      -H "Authorization: Bearer cai_YOUR_KEY_HERE" \
      -H "Content-Type: application/json" \
      -d '{"message":"What should I focus on today?"}'
    Required scope: agent:run
  4. List available skills:
    curl https://developer.continua.ai/v1/skills \
      -H "Authorization: Bearer cai_YOUR_KEY_HERE"
    Required scope: skills:read

Hit a limit? Error responses include upgrade_url and current_plan so your code can handle upgrades programmatically. See /pricing for plan details.