You’ll need an Orchata account. Sign up at app.orchata.ai if you haven’t already.
New accounts start on the Sandbox tier, which includes 1 space, 50 documents per space, 100 daily API calls, and 7-day data retention. This is perfect for testing and evaluation. View all plans to see tier limits and upgrade options.
Add your first document to the space. Orchata automatically handles chunking and embedding.
cURL
Dashboard
curl -X POST https://api.orchata.ai/spaces/spc_abc123/documents \ -H "Oai-Api-Key: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "content": "# Getting Started\n\nWelcome to our product! This guide will help you get up and running quickly.\n\n## Installation\n\nRun `npm install our-product` to install.\n\n## Configuration\n\nCreate a config file at `~/.config/our-product.json`.", "filename": "getting-started.md" }'