API Reference
Reminix REST API documentation
The Reminix API provides a unified interface for deploying and interacting with AI agents. Deploy your agents from GitHub, then invoke them via simple REST endpoints.
Key Features
- Agent Invocation — Execute one-shot tasks with structured input/output
- Conversational Chat — Multi-turn conversations with OpenAI-compatible message format
- Streaming Support — Real-time Server-Sent Events (SSE) for progressive responses
- GitHub Integration — Deploy agents directly from your repositories
Base URL
https://api.reminix.com/v1Authentication
All requests require a Project API Key in the Authorization header:
Authorization: Bearer reminix_sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxSee Authentication for details on getting and using your API key.
Endpoints
| Endpoint | Method | Description |
|---|---|---|
/project | GET | Get current project |
/agents/{name}/invoke | POST | Invoke an agent |
/agents/{name}/chat | POST | Chat with an agent |