Skip to main content
GET
/
v2
/
transactions
/
by-network
/
{network}
/
{hash}
Get transaction by network and hash
curl --request GET \
  --url https://api.range.org/v2/transactions/by-network/{network}/{hash} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3891709-0",
  "time": "2024-05-08T13:05:57.779Z",
  "height": "3891709",
  "hash": "8c288a1b3006b4c129af06c7603a6bb624a482d5dc1b7b4cf3791cb84ade3554",
  "success": true,
  "types": [
    "MsgSend",
    "MsgDelegate"
  ],
  "signers": [
    "cosmos1z6rh9mu9qggl2mugavyfu8h5td92d9y92r9ttc"
  ],
  "transfers": {
    "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"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.range.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Path Parameters

network
string
required
hash
string
required

Response

200 - application/json

Transaction with full source data that matches the specified network and hash.

id
string
required
Example:

"3891709-0"

time
string
required
Example:

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

height
string
required
Example:

"3891709"

hash
string
required
Example:

"8c288a1b3006b4c129af06c7603a6bb624a482d5dc1b7b4cf3791cb84ade3554"

success
boolean
required
Example:

true

types
string[]
required
Example:
["MsgSend", "MsgDelegate"]
signers
string[]
required
Example:
[
"cosmos1z6rh9mu9qggl2mugavyfu8h5td92d9y92r9ttc"
]
transfers
object
required

Information about the sender of the transfer

Example:
{
"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"
}
}
Last modified on May 15, 2026