Skip to main content
GET
/
v2
/
transactions
Get transactions list
curl --request GET \
  --url https://api.range.org/v2/transactions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "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"
        }
      }
    }
  ],
  "meta": {
    "next_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "previous_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "first_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "last_page_cursor": "eyJpZCI6IjkxeFFlV3Z...",
    "total_count": 100,
    "page_number": 1
  }
}

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

Query Parameters

network
string
required

Only find transfers on one specific network

Example:

"cosmoshub-4"

cursor
string
Example:

"n0192376853"

types
string
Example:

"ExecuteContract"

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

10

tx_hash
string
Example:

"0xbe667b06979c46e186cebb4ad2c6fb6af8fb034e4723518416b2e7d3aeeb4753"

address
string

Only find transactions on one specific address

Example:

"C6RarBbo5zxMzFiVhYAvbGUWiJGuVsSczawdXdGzeEoj"

status
enum<string>

Filter by transaction status SUCCEEDED or ERROR

Available options:
SUCCEEDED,
ERROR
Example:

"SUCCEEDED"

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"

Response

200 - application/json

List of transactions that match the specified search term.

items
object[]
required
meta
object
required
Last modified on May 15, 2026