AI Agents > LLM Providers
The following endpoints allow you to inspect supported AI Providers connections and retrieve the list of supported models. These endpoints are available in open beta to all users. As beta endpoints, both functionality and availability may change.
Retrieve a list of all LLM providers
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
LLM providers listed successfully
GET /api/v2/ai-agents/v1/llm-providers?teamId=1 HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
LLM providers listed successfully
[
{
"id": 1,
"provider": "openAi",
"accountName": "openai-gpt-3"
},
{
"id": 2,
"provider": "anthropic",
"accountName": "anthropic-claude"
}
]Retrieve details of a specific LLM provider by ID
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
LLM provider details retrieved successfully
GET /api/v2/ai-agents/v1/llm-providers/{providerId}?teamId=1 HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
LLM provider details retrieved successfully
[
{
"id": 1,
"provider": "openAi"
}
]Retrieve a list of models for a specific LLM provider by ID
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
List of models for the LLM provider retrieved successfully
GET /api/v2/ai-agents/v1/llm-providers/{providerId}/models?teamId=1 HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
List of models for the LLM provider retrieved successfully
[
{
"provider": "openAi",
"model": "gpt-4o",
"tokenLimit": 128000,
"settings": {
"maxTokens": 128000
}
}
]Last updated

