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>'
import requests

url = "https://api.range.org/v2/transfers/{id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.range.org/v2/transfers/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.range.org/v2/transfers/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.range.org/v2/transfers/{id}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.range.org/v2/transfers/{id}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.range.org/v2/transfers/{id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "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 July 8, 2026