Introduction

The Sybill API provides programmatic access to your Sybill workspace — conversations, insights, and AI-powered analysis — via standard REST endpoints and an MCP interface for AI assistants.

Alpha Notice

The Sybill API is currently in alpha. Endpoints, request/response schemas, rate limits, and behavior may change at any time without prior notice. We recommend against building production-critical integrations until the API reaches a stable release.

Base URL

https://api.sybill.ai

Quick start

  1. Create an API key from the Sybill dashboard (Settings → Integrations → API Keys).
  2. Make your first request:
curl -H "Authorization: Bearer sk_live_YOUR_KEY" \
  https://api.sybill.ai/v1/health

A successful response looks like:

{
  "status": "ok",
  "org_id": "your-org-id",
  "scopes": ["read"]
}

Available interfaces

InterfaceURLDescription
REST APIhttps://api.sybill.aiStandard HTTP endpoints for conversations, deals, accounts, and health checks
MCPhttps://mcp.sybill.ai/mcpModel Context Protocol server for AI assistants (Claude, Cursor, etc.)

Next steps