Skip to main content
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",
      "fundingStatus": "funded"
    }
  ],
  "pagination": {
    "total": 142,
    "limit": 50,
    "offset": 0
  }
}

Documentation Index

Fetch the complete documentation index at: https://dev-docs.multihopper.com/llms.txt

Use this file to discover all available pages before exploring further.

Query parameters

status
string
Filter by transfer status (e.g. completed, processing, failed).
fromDate
string
ISO 8601 start date filter (e.g. 2025-01-01T00:00:00.000Z).
toDate
string
ISO 8601 end date filter.
externalId
string
Filter by your external ID.
supportBundleId
string
Filter by support bundle ID.
limit
integer
default:"50"
Number of results to return.
offset
integer
default:"0"
Pagination offset.

Response

items
array
Array of transfer objects.
pagination
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",
      "fundingStatus": "funded"
    }
  ],
  "pagination": {
    "total": 142,
    "limit": 50,
    "offset": 0
  }
}