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/v1

Authentication

All requests require a Project API Key in the Authorization header:

Authorization: Bearer reminix_sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

See Authentication for details on getting and using your API key.

Endpoints

EndpointMethodDescription
/projectGETGet current project
/agents/{name}/invokePOSTInvoke an agent
/agents/{name}/chatPOSTChat with an agent

On this page