api.agntix.ai — internal service URLs are not exposed.
Create an account
Sign up at app.agntix.ai/signup. The default org plan includes
enough free quota to finish this quickstart.
Get your API key
Open Settings → API Keys, click Create key,
pick Read & write, and copy the value. It looks like:Set it in your shell:
Make your first authenticated call
GET /v1/chat/models lists every model your org can use. It needs auth but no body — perfect
for a smoke test.200 OK here means your key works.Create an agent
The minimum agent needs a name, a model, and a system prompt.Save the
id from the response — you’ll need it next.You’re done
You now have:- An agent your team can iterate on from the dashboard or the API.
- A session with a real LLM-generated reply.
- A working API key suitable for your local dev environment.
What’s next
Add a knowledge store (RAG)
Make the agent answer from your own documents instead of generic web knowledge.
Wire up voice
Same agent, now speaking — over the browser or PSTN phone calls.
Subscribe to webhooks
Push session lifecycle events to your back-office.
Production checklist
Rate limits, retries, error handling, and SLOs.