Skip to main content
GET
/
v1
/
transfers
List Transfers
curl --request GET \
  --url https://api.waycore.com/v1/transfers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "requestedAmount": {
        "type": "<string>",
        "value": "<string>",
        "currency": "<string>"
      },
      "sourceAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "destination": {
        "type": "<string>",
        "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      },
      "clientReference": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "executedAmount": {
        "currency": "USD",
        "type": "money",
        "value": "1250.00"
      },
      "memo": "<string>",
      "failureReason": {
        "message": "<string>"
      }
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": "<string>"
  },
  "meta": {
    "requestId": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.waycore.com/llms.txt

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

Authorizations

Authorization
string
header
required

Opaque API key passed as Authorization: Bearer <key>. Keys are organization-bound, environment-bound (live or test), scope-carrying, and expiring. Create and manage keys via the console.

Query Parameters

status
enum<string> | null

Filter by transfer status.

Available options:
queued,
executing,
pending_bank_approval,
completed,
failed,
returned,
cancelled,
unknown
accountId
string<uuid> | null

Filter by source or internal destination account identifier.

createdAtFrom
string<date-time> | null

Inclusive lower bound for createdAt.

createdAtTo
string<date-time> | null

Exclusive upper bound for createdAt.

limit
integer
default:50

Maximum number of items to return.

Required range: 1 <= x <= 100
cursor
string | null

Opaque pagination cursor from a previous response.

Response

Successful Response

data
Transfer · object[]
required
pagination
Pagination · object
required
meta
Meta · object
required