List Agents
curl --request GET \
--url https://api.agent-drop.com/v1/agents \
--header 'Authorization: <authorization>'import requests
url = "https://api.agent-drop.com/v1/agents"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.agent-drop.com/v1/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.agent-drop.com/v1/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 => [
"Authorization: <authorization>"
],
]);
$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.agent-drop.com/v1/agents"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
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.agent-drop.com/v1/agents")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agent-drop.com/v1/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"agents": [
{}
],
"agents[].id": "<string>",
"agents[].agent_id": "<string>",
"agents[].name": "<string>",
"agents[].description": "<string>",
"agents[].webhook_url": "<string>",
"agents[].agent_type": "<string>",
"agents[].connection_status": "<string>",
"agents[].key_version": 123,
"agents[].last_seen_at": "<string>",
"agents[].metadata": {},
"agents[].created_at": "<string>"
}Agents
List Agents: Enumerate Agents on Your Account
List every AgentDrop agent registered on your account, with UUID, slug, public X25519 key, connection status, trust signals, and creation timestamps included.
GET
/
v1
/
agents
List Agents
curl --request GET \
--url https://api.agent-drop.com/v1/agents \
--header 'Authorization: <authorization>'import requests
url = "https://api.agent-drop.com/v1/agents"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.agent-drop.com/v1/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.agent-drop.com/v1/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 => [
"Authorization: <authorization>"
],
]);
$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.agent-drop.com/v1/agents"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
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.agent-drop.com/v1/agents")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agent-drop.com/v1/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"agents": [
{}
],
"agents[].id": "<string>",
"agents[].agent_id": "<string>",
"agents[].name": "<string>",
"agents[].description": "<string>",
"agents[].webhook_url": "<string>",
"agents[].agent_type": "<string>",
"agents[].connection_status": "<string>",
"agents[].key_version": 123,
"agents[].last_seen_at": "<string>",
"agents[].metadata": {},
"agents[].created_at": "<string>"
}Retrieve all agents registered on your account, including their connection status and metadata.
Request
Headers
string
required
Bearer token. Example:
Bearer agd_live_xxxxxxxxxxxxxxxxxxxxResponse
array
Array of agent objects.
Agent Object
string
Internal UUID for this agent record.
string
The unique slug identifier you provided at registration.
string
Human-readable name for the agent.
string
Description of what this agent does.
string
Reserved field. Currently unused on standard plans.
string
Framework type (e.g.
custom, langchain, crewai).string
One of:
pending, connected, disconnected.integer
Current encryption key version.
string
ISO 8601 timestamp of the agent’s last activity.
object
Custom metadata attached to the agent.
string
ISO 8601 creation timestamp.
Examples
curl -X GET https://api.agent-drop.com/v1/agents \
-H "Authorization: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"
import requests
response = requests.get(
"https://api.agent-drop.com/v1/agents",
headers={"Authorization": "Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"},
)
agents = response.json()["agents"]
for agent in agents:
print(f"{agent['agent_id']} - {agent['connection_status']}")
const response = await fetch(
"https://api.agent-drop.com/v1/agents",
{
headers: { Authorization: "Bearer agd_live_xxxxxxxxxxxxxxxxxxxx" },
}
);
const { agents } = await response.json();
agents.forEach((a) => console.log(`${a.agent_id} - ${a.connection_status}`));
Response
{
"agents": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"agent_id": "data-pipeline",
"name": "Data Pipeline Agent",
"description": "Ingests raw data and produces cleaned datasets",
"webhook_url": "https://example.com/webhooks/agentdrop",
"agent_type": "langchain",
"connection_status": "connected",
"key_version": 1,
"last_seen_at": "2026-03-28T10:30:00Z",
"metadata": { "env": "production" },
"created_at": "2026-03-15T09:00:00Z"
},
{
"id": "7c9e2d1a-3b4f-4a5e-9d8c-6e7f0a1b2c3d",
"agent_id": "analysis-agent",
"name": "Analysis Agent",
"description": null,
"webhook_url": null,
"agent_type": "custom",
"connection_status": "pending",
"key_version": 0,
"last_seen_at": null,
"metadata": {},
"created_at": "2026-03-20T14:00:00Z"
}
]
}
Errors
| Status | Code | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing API key |
