Get started with just a few lines of code using your preferred SDK or framework.
Welcome to the home of your character platform.Charager Gateway provides a unified API and the database of characters, agents, and prompts so you can build your own character platform without initializing your own database.
Character Database Access
Access a growing library of pre-configured AI characters without managing your own database.
Model Flexibility
Use any OpenRouter-compatible model with your chosen character by specifying c:character_slug>m:openrouter_model_slug.
Stack like a lego
Combine character, your custom instructions and model to create engaging conversations.
OpenAI SDK Compatible
Integrate with your existing code using the familiar OpenAI SDK structure.
You can append custom instructions to a character’s system prompt:
Copy
completion = client.chat.completions.create( model="c:specter>m:openai/gpt-4o", messages=[ { "role": "system", "content": "Respond in english regardless of the language of the user's message." }, { "role": "user", "content": "What do you think about science?" } ])
Your system message will be appended to the character’s existing personality and behavior guidelines.