curl "/api/v1/transfers?status=completed&fromDate=2025-01-01T00:00:00.000Z&limit=50" \
-H "x-api-key: mh_live_abc123..."
{
"items": [
{
"id": 42,
"externalId": "order_12345",
"status": "completed",
"phase": "settled",
"progress": { "hopsCompleted": 7, "hopsTotal": 7 }
}
],
"pagination": {
"total": 142,
"limit": 50,
"offset": 0
}
}
Transfers
List Transfers
List transfers with pagination and optional filters
GET
/
api
/
v1
/
transfers
curl "/api/v1/transfers?status=completed&fromDate=2025-01-01T00:00:00.000Z&limit=50" \
-H "x-api-key: mh_live_abc123..."
{
"items": [
{
"id": 42,
"externalId": "order_12345",
"status": "completed",
"phase": "settled",
"progress": { "hopsCompleted": 7, "hopsTotal": 7 }
}
],
"pagination": {
"total": 142,
"limit": 50,
"offset": 0
}
}
Query parameters
string
Filter by transfer status (e.g.
completed, processing, failed).string
ISO 8601 start date filter (e.g.
2025-01-01T00:00:00.000Z).string
ISO 8601 end date filter.
string
Filter by your external ID.
string
Filter by support bundle ID.
integer
default:"50"
Number of results to return.
integer
default:"0"
Pagination offset.
Response
array
Array of transfer objects.
object
curl "/api/v1/transfers?status=completed&fromDate=2025-01-01T00:00:00.000Z&limit=50" \
-H "x-api-key: mh_live_abc123..."
{
"items": [
{
"id": 42,
"externalId": "order_12345",
"status": "completed",
"phase": "settled",
"progress": { "hopsCompleted": 7, "hopsTotal": 7 }
}
],
"pagination": {
"total": 142,
"limit": 50,
"offset": 0
}
}

