Transfers

Coming Soon*

Transfers

get
/v1/transfers

Retrieve a list of transfers with optional filtering and pagination.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
afterstringOptional

When provided, specifies the last item returned in previous page, used to fetch the next page. Fetches the first page when omitted.

limitstring · integerOptional

When provided, specifies the number of items to return in the page. Uses default page size of 10 when omitted.

transferIdstring · uuidOptional

Filter by transfer ID

sourceAccountIdstring · uuidOptional

Filter by source account ID

sourceCustomerIdstring · uuidOptional

Filter by source customer ID

beneficiaryAccountIdstring · uuidOptional

Filter by destination account id

beneficiaryCustomerIdstring · uuidOptional

Filter by destination customer id

transferCurrencystringOptional

Filter by transfer currency

Example: USDC
statusstring · enumOptional

Filter by status

Possible values:
requestedAtstring · date-timeOptional

Filter by request date lower bound, exclusive

Responses
chevron-right
200

Successful response

application/json
afterstring · nullableOptional

The token of the last item in the response

Example: 9fe51492-fc0f-483c-ab85-391e4a3a4335
totalCountstring · integerOptional

The total number of items in the entire filtered data set

Example: 1
get
/v1/transfers

Get transfer

get
/v1/transfers/{transferId}

Retrieve a transfer by its ID.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
transferIdstring · uuidRequired

The transfer ID

Example: faf8e68c-2cd5-43a6-b8e1-112535b7de00
Responses
chevron-right
200

Successful response

application/json
sourceAccountIdstring · max: 256RequiredExample: a645bd39-41a7-4a13-8c0a-ff38571ddeda
sourceCustomerIdstring · uuidRequiredExample: 39b83120-a80f-4bd9-8469-7d5bcaa055af
beneficiaryAccountIdstring · uuidRequiredExample: 635b8c14-c6a9-4838-b9a1-bc7ddc29a086
beneficiaryCustomerIdstring · uuidRequiredExample: bf22f3c9-c5f6-4815-a6a6-9b999612b713
transferQuantitystring · numberRequiredExample: 3.6725
transferCurrencystringRequiredExample: USD
statusstring · enumRequiredPossible values:
requestedAtstring · date-timeRequiredExample: 2026-02-19T18:44:05Z
get
/v1/transfers/{transferId}

Create Transfer

post
/v1/transfers

Transfer funds between accounts.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
sourceAccountIdstring · max: 256RequiredExample: a645bd39-41a7-4a13-8c0a-ff38571ddeda
sourceCustomerIdstring · uuidRequiredExample: 39b83120-a80f-4bd9-8469-7d5bcaa055af
beneficiaryAccountIdstring · uuidRequiredExample: 635b8c14-c6a9-4838-b9a1-bc7ddc29a086
beneficiaryIdstring · uuidOptionalExample: bf22f3c9-c5f6-4815-a6a6-9b999612b713
transferQuantitystring · numberRequiredExample: 3.6725
transferCurrencystringRequiredExample: USD
Responses
chevron-right
200

Successful response

application/json
sourceAccountIdstring · max: 256RequiredExample: a645bd39-41a7-4a13-8c0a-ff38571ddeda
sourceCustomerIdstring · uuidRequiredExample: 39b83120-a80f-4bd9-8469-7d5bcaa055af
beneficiaryAccountIdstring · uuidRequiredExample: 635b8c14-c6a9-4838-b9a1-bc7ddc29a086
beneficiaryCustomerIdstring · uuidRequiredExample: bf22f3c9-c5f6-4815-a6a6-9b999612b713
transferQuantitystring · numberRequiredExample: 3.6725
transferCurrencystringRequiredExample: USD
statusstring · enumRequiredPossible values:
requestedAtstring · date-timeRequiredExample: 2026-02-19T18:44:05Z
post
/v1/transfers

Last updated