MCP Gateway
ApiPortal

Check LLM configuration status

Check if an LLM provider is configured for the playground. Returns whether the AI chat feature is available and the model name.

GET
/api/v1/portal/playground/llm-status

Authorization

User API Key
AuthorizationBearer <token>

User API key (mgw_usr_live_* or mgw_usr_test_*)

In: header

access_token?|

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/portal/playground/llm-status"
{
  "configured": true,
  "model": "string"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}