Settings

Manage your workspace, API access and integrations

API Keys

Use API keys to access VANTA Router programmatically. Keys are shown once — save them securely.

No API keys yet

📖 API Usage Example

# Chat with AI
curl -X POST https://app.vgo.global/router-api/v1/chat/stream \
  -H "Authorization: Bearer sk-vanta-your-key" \
  -H "Content-Type: application/json" \
  -d '{"messages":[{"role":"user","content":"Hello"}],
       "workspace_id":"your-workspace-id"}'

# Run an agent
curl -X POST https://app.vgo.global/router-api/v1/agents/{agent_id}/run/stream \
  -H "Authorization: Bearer sk-vanta-your-key" \
  -d '{"task":"Research top 5 AI companies","workspace_id":"your-workspace-id"}'