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 /v3/aiwatcher/monitor.

GET
/v3/aiwatcher/models

Authorization

ApiKeyAuth
x-access-token<token>

Your Mangools API key

In: header

Response Body

application/json

curl -X GET "https://api.mangools.com/v3/v3/aiwatcher/models"
{
  "models": [
    {
      "id": 0,
      "model": "string",
      "name": "string",
      "provider": "string"
    }
  ]
}
Empty