Get your API key
Go to the Reminix Dashboard, create a project, and copy your API key from the project settings page.
Your API key starts with
reminix_sk_ and is scoped to a single project. Keep it secret and never expose it in client-side code.Deploy your first agent
A new project is empty — you need at least one agent before you can invoke anything. Pick whichever path is fastest:
- Start from a template (recommended) — pick one from reminix.com/templates and click Deploy. You get a working agent in your project in about thirty seconds, with the source forked into your own GitHub repo so you can customize it.
- Connect your own GitHub repo — see Deploy from GitHub. Push code, get a live agent in a couple of minutes.
- Use the CLI — write a
server.tsorserver.pywith oneagent()(TS) or@agent(Python) definition and aserve()call, then runreminix deployfrom the project directory.
my-agent. Substitute your agent’s actual name in the examples below.Chat with an agent
Start a multi-turn conversation. Use
conversation_id to continue an existing conversation.Next steps
Agents
Understand agent types, handlers, and metadata.
TypeScript: Creating Agents
Build and deploy agents with the TypeScript runtime.
Python: Creating Agents
Build and deploy agents with the Python runtime.