We refreshed our doc site!

Bookmarked links may have changed

Read release notes

listTransfers

Circle Mint

List all transfers

GEThttps://api.circle.com/v1/transfers

Searches for transfers involving the provided wallets. If no wallet ids are provided, searches all wallets associated with your Circle API account. If the date parameters are omitted, returns the most recent transfers. This endpoint returns up to 50 transfers in descending chronological order or pageSize, if provided.

Query parameters
walletId
string

Unique identifier for the source or destination wallet of transfers, if any. May not be used in conjunction with destinationWalletId or sourceWalletId. Useful for fetching all transfers related to a wallet.

sourceWalletId
string

Unique identifier for the source wallet of transfers, if any.

destinationWalletId
string

Unique identifier for the destination wallet of transfers, if any.

returnIdentities
boolean

Specify if you would like to see identities in the response. Restricts maximum returned items to 5. By default returnIdentities is false, resulting in the response not returning data.source.identities.

from
date-time

Queries items created since the specified date-time (inclusive).

to
date-time

Queries items created before the specified date-time (inclusive).

pageBefore
string

A collection ID value used for pagination.

It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjuction with pageAfter.

pageAfter
string

A collection ID value used for pagination.

It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjuction with pageBefore.

pageSize
integer

Limits the number of items to be returned.

Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used.

If avoided, the collection will determine the page size itself.

Response
RequestChoose a language
ResponseChoose an example
1{
2  "data": [
3    {
4      "id": "b8627ae8-732b-4d25-b947-1df8f4007a29",
5      "source": {
6        "type": "wallet",
7        "id": "12345",
8        "identities": [
9          {
10            "type": "individual",
11            "name": "Satoshi Nakamoto",
12            "addresses": [
13              {
14                "line1": "100 Money Street",
15                "line2": "Suite 1",
16                "city": "Boston",
17                "district": "MA",
18                "postalCode": "01234",
19                "country": "US"
20              }
21            ]
22          }
23        ]
24      },
25      "destination": {
26        "type": "blockchain",
27        "address": "0x8381470ED67C3802402dbbFa0058E8871F017A6F",
28        "addressTag": "123456789",
29        "chain": "ALGO"
30      },
31      "amount": {
32        "amount": "3.14",
33        "currency": "USD"
34      },
35      "fees": [
36        {
37          "amount": "10.00",
38          "currency": "USD",
39          "type": "network"
40        }
41      ],
42      "transactionHash": "0x4cebf8f90c9243a23c77e4ae20df691469e4b933b295a73376292843968f7a63",
43      "status": "pending",
44      "errorCode": "transfer_failed",
45      "createDate": ""
46    }
47  ]
48}
Did this page help you?
© 2023-2024 Circle Technology Services, LLC. All rights reserved.