Chat with Indigo
Get a response from the AIXBT Indigo agent. Chat with Indigo for real-time market insights and narrative analysis.
Capabilities:
- Exploratory conversation about markets, narratives, and projects
- Structured report generation on demand
- Access to AIXBT's signal and momentum data
Usage:
Works like a standard LLM completions endpoint. Each request is stateless—include conversation history in the messages array for multi-turn context. Use role: "user" for your prompts and role: "assistant" for prior Indigo responses.
Model overrides:
model, provider, and variant are restricted to AIXBT team API keys. Non-team callers receive 403 Forbidden when any override is supplied. Supported providers include fireworks for compatible Kimi requests.
Authorization
ApiKeyAuth API key to authorize requests
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v2/agents/indigo" \ -H "Content-Type: application/json" \ -d '{}'{
"status": 200,
"error": "",
"data": {
"text": "This is a response from the Indigo agent."
}
}{
"status": 400,
"error": "Invalid request payload",
"data": [
"string"
]
}{
"status": 403,
"error": "Forbidden",
"data": {
"message": "model, provider, and variant overrides are restricted."
}
}{
"status": 404,
"error": "No information found",
"data": {
"message": "The request was processed but no meaningful information was found for your query."
}
}{
"status": 500,
"error": "Failed to process agent request",
"data": {
"message": "An error occurred while processing your request. Please try again later."
}
}