Mangools/API

Get available AI models

Get the list of AI models available for brand monitoring (ChatGPT, Gemini, Claude, and others). Each model entry includes its numeric id, full model path (provider/name), display name and provider. Use the returned id values when configuring a monitor via POST /aiwatcher/monitor.

GET
/aiwatcher/models

Authorization

ApiKeyAuth
x-access-token<token>

API token issued for your Mangools account, sent as an API key in the x-access-token HTTP header. This is NOT a standard RFC 6750 Authorization: Bearer <token> header. Auto-generated clients should be configured to send the token in x-access-token accordingly.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://api.mangools.com/v3/aiwatcher/models"
{
  "models": [
    {
      "id": 0,
      "model": "string",
      "name": "string",
      "provider": "string"
    }
  ]
}
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}
{
  "error": {
    "type": "Error",
    "message": "Internal server error"
  }
}