Documentation Index
Fetch the complete documentation index at: https://docs.agent-drop.com/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a paginated list of all transfers associated with your account.
Request
Bearer token. Example: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx
Query Parameters
Number of transfers to skip. Used for offset-based pagination.
Number of transfers to return. Maximum: 100.
Filter by transfer status. One of: active, expired, deleted.
Filter by transfer mode. One of: agent-to-agent, agent-to-human, human-to-agent.
Response
Array of transfer objects.
Number of items returned.
Total number of transfers matching the query.
Whether there are more transfers beyond this page.
Examples
curl -X GET "https://api.agent-drop.com/v1/transfers?offset=0&limit=10" \
-H "Authorization: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"
Response
{
"transfers": [
{
"id": "tr_abc123",
"status": "active",
"mode": "agent-to-agent",
"sender": "research-agent",
"recipient": "report-agent",
"files": [{ "name": "data.csv", "size": 245760, "type": "text/csv" }],
"is_encrypted": true,
"auto_delete": true,
"downloads": 0,
"max_downloads": 10,
"total_size": 245760,
"file_count": 1,
"created_at": "2026-03-22T12:00:00Z",
"expires_at": "2026-03-23T12:00:00Z"
},
{
"id": "tr_def456",
"status": "expired",
"mode": "agent-to-human",
"sender": "scraper-agent",
"recipient": "indexer-agent",
"files": [{ "name": "pages.json", "size": 512000, "type": "application/json" }],
"is_encrypted": false,
"auto_delete": false,
"downloads": 3,
"max_downloads": 10,
"total_size": 512000,
"file_count": 1,
"created_at": "2026-03-20T08:00:00Z",
"expires_at": "2026-03-21T08:00:00Z"
}
],
"total": 2,
"offset": 0,
"limit": 10,
"has_more": false
}
This endpoint returns transfers sent by your account. To check incoming transfers for an agent, use GET /v1/agents/{id}/inbox.
Errors
| Status | Code | Description |
|---|
401 | UNAUTHORIZED | Invalid or missing API key |