Quick Start
Sign up, save a provider key, ship an agent, and send your first API request — all in under ten minutes.
The 10-minute path
Onboarding checklist · app.sentientone.ai
Welcome to SentientOneStep 4 of 5Continue
Your account
admin@acme.com
Plan
Pro trial · 14 days remaining
Platform API key
sk-so-•••• 3F92
1 agent1 saved key0 requests
What you'll have at the end
A live agent on the SentientOne platform, a saved LLM provider key, your platform API key, and a working terminal command that returns an AI response from your own configured agent.
Step-by-step
- 1
Create an account
Sign up at app.sentientone.ai. You land on the dashboard with a 14-day trial of Pro already active — no credit card required. - 2
Save your first LLM provider key
Open LLM Keys in the sidebar. Click+ Add key, pick a provider (OpenAI, Anthropic, Gemini, or Groq), name the key, paste it in, and save. Keys are encrypted at rest and only used when an agent of yours calls that provider. - 3
Create an agent
Open Agents and click+ New Agent. Pick a template (Website Chatbot is a safe first pick), tweak the name, choose your provider + model, and select the saved key from theUse saved keydropdown. ClickCreate Agent. - 4
Copy the Agent ID
On the agent detail page, theAgent IDchip sits below the agent name. Click to copy it — you'll send it in every API request as theX-Agent-Idheader. - 5
Copy your platform API key
Open Settings →API Key. Reveal the key (starts withsk-so-) and copy it. Every request to the platform sends this as theX-Api-Keyheader. - 6
Send your first request
From any terminal, run the curl below. Replace the two placeholders with the values you just copied.bashcurl -X POST https://api.sentientone.ai/v1/chat \ -H "Content-Type: application/json" \ -H "X-Api-Key: sk-so-YOUR_KEY" \ -H "X-Agent-Id: YOUR_AGENT_ID" \ -d '{ "message": "Hello!" }' - 7
See the response
You get back a JSON payload with aconversation_idand the assistant's reply. Keep the id and pass it back on the next request to continue the conversation.
What to read next
Stay on the dashboard and learn how each surface works — Agents, Playground, ChatBot. Or jump straight into the REST API if you're wiring an integration.
Tip
Use the in-app API Sandbox to verify a request before pasting it into your codebase. It hits the same endpoint as production and shows you the full response, status, headers, and timing.