API Reference (Minimax)

Endpoint: To be determined by the implementation team. Minimax offers vision capabilities via their chat completion API.

Typical payload format (to be validated against actual Minimax docs):

{
  "model": "minimax-text-01" or "abab6.5-chat",
  "messages": [
    {
      "role": "user",
      "content": [
        {"type": "text", "text": "Describe this image in one concise sentence."},
        {"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,/9j/4AAQ..."}}
      ]
    }
  ]
}

Expected response:

{
  "choices": [{
    "message": {
      "content": "A golden retriever sitting on a brown leather couch."
    }
  }]
}

Authentication: Bearer token via Authorization header. The API key is the user’s existing Minimax token plan key.