AIXBT Docs

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.

POST
/v2/agents/indigo

Authorization

ApiKeyAuth
x-api-key<token>

API key to authorize requests

In: header

Request Body

application/json

messages?

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.aixbt.tech/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": 404,
  "error": "No information found",
  "data": {
    "message": "The request was processed but no meaningful information was found for your query.",
    "refund": {
      "attempted": true,
      "successful": true,
      "transactionHash": "0x123abc...",
      "reason": "No information found"
    }
  }
}
{
  "status": 500,
  "error": "Failed to process agent request",
  "data": {
    "message": "An error occurred while processing your request. Please try again later.",
    "refund": {
      "attempted": true,
      "successful": true,
      "transactionHash": "0x123abc...",
      "reason": "Server error"
    }
  }
}