Skip to main content
GET
/
v2
/
transfers
Get token transfers
curl --request GET \
  --url https://api.range.org/v2/transfers \
  --header 'X-API-KEY: <api-key>'
{
  "items": [
    {
      "id": "9359/AX/2352",
      "time": "2024-05-08T13:05:57.779Z",
      "status": "SUCCEEDED",
      "type": "cctp",
      "sender": {
        "address": "AuZrspySopxfZUiXY6YxDyfS211KvXLe197kj3M2cLpq",
        "network": "solana",
        "label": "Scammer",
        "malicious": true,
        "icon_urls": [
          "https://example.com/solana.png"
        ],
        "token": {
          "amount": 27.18,
          "symbol": "USDC",
          "usd": 27.24,
          "icon_url": "https://example.com/usdc.png"
        }
      },
      "receiver": {
        "address": "noble14h2xp3fcfsgwmr24wrurfpv5t0chaal238k9wq",
        "network": "noble-1",
        "icon_urls": [
          "https://example.com/noble.png"
        ],
        "token": {
          "amount": 27.18,
          "symbol": "USDC",
          "usd": 27.24,
          "icon_url": "https://example.com/usdc.png"
        }
      },
      "sender_tx_hash": "76b9922b6c8968d328e56930b4bbe26665d2ed12f2bdff45b2e9a43b09f5ab9c",
      "receiver_tx_hash": "e607dba4c1e138dabb1d534ba0e14645786ca892907563c388d7de7f65ba7bb3"
    }
  ],
  "meta": {
    "next_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "previous_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "first_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "last_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "total_count": 100,
    "page_number": 1
  }
}

Authorizations

X-API-KEY
string
header
required

Authorization method required to allow user to access the api endpoints.

Query Parameters

explorer
string
Example:

"solana"

cursor
string
Example:

"n0192376853"

sort
enum<string>
Available options:
usd
Example:

"usd"

size
number
default:25
Required range: 1 <= x <= 100
Example:

10

tx_hash
string
Example:

"0xbe667b06979c46e186cebb4ad2c6fb6af8fb034e4723518416b2e7d3aeeb4753"

source_networks
string[]
Example:

"eth,solana"

destination_networks
string[]
Example:

"eth,solana"

network
string

Only find transfers on one specific network

Example:

"cosmoshub-4"

address
string

Only find transfers on one specific address

Example:

"C6RarBbo5zxMzFiVhYAvbGUWiJGuVsSczawdXdGzeEoj"

search_string
string
Example:

"e.g. partial address"

status
enum<string>[]

Current status(es) of the transfer, comma-separated (e.g. 'SUCCEEDED,FAILED')

Example:

"SUCCEEDED,FAILED"

bridges
string[]

Bridges or networks used for the transfer

Example:

"ibc,cctp"

token_symbols
string[]

Token symbols involved in the transfer

Example:

"USDC,DAI"

min_usd
number

Minimum USD amount (decimal). Converted to number.

Example:

"100.50"

max_usd
number

Maximum USD amount (decimal). Converted to number.

Example:

"1000"

start_time
string<date-time>

Start time (ISO 8601). Converted to Date.

Example:

"2025-01-01T00:00:00Z"

end_time
string<date-time>

End time (ISO 8601). Converted to Date.

Example:

"2025-12-31T23:59:59Z"

scope
enum<string>
Available options:
INTERCHAIN,
INTRACHAIN,
ALL

Response

200 - application/json

List of token transfers that match the specified search term.

items
object[]
required
meta
object
required