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.

List LLM Providers

get

Retrieve a list of all LLM providers

Authorizations
Query parameters
teamIdnumberRequired
Responses
200
LLM providers listed successfully
application/json
get
GET /api/v2/ai-agents/v1/llm-providers HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
200

LLM providers listed successfully

[
  {
    "id": 1,
    "provider": "openAi"
  },
  {
    "id": 2,
    "provider": "anthropic"
  }
]

Get LLM Provider

get

Retrieve details of a specific LLM provider by ID

Authorizations
Path parameters
providerIdnumberRequired
Query parameters
teamIdnumberRequired
Responses
200
LLM provider details retrieved successfully
application/json
get
GET /api/v2/ai-agents/v1/llm-providers/{providerId} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
200

LLM provider details retrieved successfully

[
  {
    "id": 1,
    "provider": "openAi"
  }
]

List Models for LLM Provider

get

Retrieve a list of models for a specific LLM provider by ID

Authorizations
Path parameters
providerIdnumberRequired
Query parameters
teamIdnumberRequired
Responses
200
List of models for the LLM provider retrieved successfully
application/json
get
GET /api/v2/ai-agents/v1/llm-providers/{providerId}/models HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
200

List of models for the LLM provider retrieved successfully

[
  {
    "provider": "openAi",
    "model": "gpt-4o",
    "tokenLimit": 128000,
    "settings": {
      "maxTokens": 128000
    }
  }
]