Skip to main content
GET
/
v2
/
transfers
/
{id}
Get token transfer by ID
curl --request GET \
  --url https://api.range.org/v2/transfers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "9359/AX/2352",
  "time": "2024-05-08T13:05:57.779Z",
  "status": "SUCCEEDED",
  "type": "cctp",
  "sender": {
    "address": "AuZrspySopxfZUiXY6YxDyfS211KvXLe197kj3M2cLpq",
    "network": "solana"
  },
  "receiver": {
    "address": "noble14h2xp3fcfsgwmr24wrurfpv5t0chaal238k9wq",
    "network": "noble-1"
  },
  "sender_tx_hash": "76b9922b6c8968d328e56930b4bbe26665d2ed12f2bdff45b2e9a43b09f5ab9c",
  "receiver_tx_hash": "e607dba4c1e138dabb1d534ba0e14645786ca892907563c388d7de7f65ba7bb3",
  "note": "<string>",
  "category": "<string>"
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Path Parameters

id
string
required

Response

200 - application/json

Token transfer that matches the specified ID.

id
string
required
Example:

"9359/AX/2352"

time
string
required
Example:

"2024-05-08T13:05:57.779Z"

status
enum<string>
required

Current status of the transfer

Available options:
SUCCEEDED,
PENDING,
ERROR_ON_DESTINATION,
TIMEOUT
Example:

"SUCCEEDED"

type
string
required

Type of transfer (e.g., ibc, cctp, etc.)

Example:

"cctp"

sender
object
required

Information about the sender of the transfer

Example:
{
"address": "AuZrspySopxfZUiXY6YxDyfS211KvXLe197kj3M2cLpq",
"network": "solana"
}
receiver
object
required

Information about the receiver of the transfer

Example:
{
"address": "noble14h2xp3fcfsgwmr24wrurfpv5t0chaal238k9wq",
"network": "noble-1"
}
sender_tx_hash
string
Example:

"76b9922b6c8968d328e56930b4bbe26665d2ed12f2bdff45b2e9a43b09f5ab9c"

receiver_tx_hash
string
Example:

"e607dba4c1e138dabb1d534ba0e14645786ca892907563c388d7de7f65ba7bb3"

note
string

Workspace note for this transfer

category
string

Workspace category for this transfer

Last modified on June 16, 2026