List Agents
curl --request GET \
--url https://api.getello.ai/api/agents \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getello.ai/api/agents"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.getello.ai/api/agents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getello.ai/api/agents",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.getello.ai/api/agents"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getello.ai/api/agents")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getello.ai/api/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": 200,
"message": "Assistants retrieved successfully",
"data": [
{
"id": "698054b94168f285f5d3467b",
"name": "My Hybrid Agent",
"type": "hybrid",
"updatedAt": "2026-03-19T08:12:33.503000Z",
"voiceEngine": "sarvam",
"phoneNumber": "+919247519114",
"status": true
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 3,
"totalPages": 1,
"hasNextPage": false,
"hasPrevPage": false
}
}{
"status": 400,
"message": "Validation Error",
"errors": [
{
"field": "query.limit",
"message": "\"limit\" must be less than or equal to 100"
}
]
}{
"status": 401,
"message": "Unauthorized access"
}{
"status": 403,
"message": "This route requires a user token without scope"
}{
"status": 500,
"message": "Error while fetching assistants",
"error": {
"details": "Some internal error message"
}
}Agents
List Agents
Retrieves a paginated list of agents (supports filtering and sorting).
GET
/
api
/
agents
List Agents
curl --request GET \
--url https://api.getello.ai/api/agents \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.getello.ai/api/agents"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.getello.ai/api/agents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getello.ai/api/agents",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.getello.ai/api/agents"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.getello.ai/api/agents")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getello.ai/api/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": 200,
"message": "Assistants retrieved successfully",
"data": [
{
"id": "698054b94168f285f5d3467b",
"name": "My Hybrid Agent",
"type": "hybrid",
"updatedAt": "2026-03-19T08:12:33.503000Z",
"voiceEngine": "sarvam",
"phoneNumber": "+919247519114",
"status": true
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 3,
"totalPages": 1,
"hasNextPage": false,
"hasPrevPage": false
}
}{
"status": 400,
"message": "Validation Error",
"errors": [
{
"field": "query.limit",
"message": "\"limit\" must be less than or equal to 100"
}
]
}{
"status": 401,
"message": "Unauthorized access"
}{
"status": 403,
"message": "This route requires a user token without scope"
}{
"status": 500,
"message": "Error while fetching assistants",
"error": {
"details": "Some internal error message"
}
}Authorizations
apiKeybearerAuth
Query Parameters
Example:
"6970c2f3948cfbce1932d99d"
Required range:
x >= 1Example:
1
Required range:
1 <= x <= 100Example:
10
Example:
"general"
Example:
"sales"
Available options:
name, type, status, createdAt, updatedAt Example:
"updatedAt"
Available options:
asc, desc Example:
"desc"
Example:
"2026-04-01T00:00:00.000Z"
Example:
"2026-04-03T23:59:59.999Z"
Show child attributes
Show child attributes
⌘I