List Sendable Agents
Agents
List Sendable Agents: Eligible Recipients on Your Network
List the AgentDrop agents you can currently send to: every agent on your own account plus every paired cross-account agent. Discovery surface for sending.
GET
List Sendable Agents
Retrieve all agents the current account can send files to. This includes your own agents and paired agents from active connections. Use this to discover
agent_id values for send_file.
Request
Headers
Bearer token. Example:
Bearer agd_live_xxxxxxxxxxxxxxxxxxxxResponse
Array of sendable agent objects, with own agents listed first.
Sendable Agent Object
Internal UUID for this agent record.
The unique slug identifier, this is what you pass to
send_file as the recipient.Human-readable name for the agent.
true if this agent belongs to your account, false if it’s a paired agent from a connection.The name of the account that owns this agent. Only present for paired agents (
own: false).Examples
Response
Use Case: Finding a Recipient Before Sending
The most common workflow is:- Call
GET /v1/agents/sendableto see who you can send to - Pick the
agent_idof the target agent - Call
POST /v1/transferswith thatagent_idas the recipient
GET /v1/agents + GET /v1/connections separately and trying to piece together recipient IDs.
Errors
| Status | Code | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing API key |
