cURL
curl --request GET \ --url https://agentdrop-production.up.railway.app/v1/transfers \ --header 'Authorization: <authorization>'
{ "data": [ {} ], "page": 123, "limit": 123, "total": 123 }
List all transfers for your account with pagination.
Bearer agd_live_xxxxxxxxxxxxxxxxxxxx
curl -X GET "https://agentdrop-production.up.railway.app/v1/transfers?page=1&limit=10" \ -H "Authorization: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"
{ "data": [ { "id": "txfr_abc123", "status": "active", "sender": "research-agent", "recipient": "report-agent", "files": [{ "name": "data.csv", "size": 245760, "type": "text/csv" }], "created_at": "2026-03-22T12:00:00Z", "expires_at": "2026-03-23T12:00:00Z" }, { "id": "txfr_def456", "status": "expired", "sender": "scraper-agent", "recipient": "indexer-agent", "files": [{ "name": "pages.json", "size": 512000, "type": "application/json" }], "created_at": "2026-03-20T08:00:00Z", "expires_at": "2026-03-21T08:00:00Z" } ], "page": 1, "limit": 10, "total": 2 }
401
UNAUTHORIZED