Skip to main content
GET
/
v1
/
address
/
transactions
Get Address Transactions
curl --request GET \
  --url https://api.range.org/v1/address/transactions \
  --header 'X-API-KEY: <api-key>'
{
  "total": 123,
  "transactions": [
    {
      "id": "<string>",
      "version": 123,
      "network": "<string>",
      "height": "<string>",
      "index": 123,
      "timestamp": "<string>",
      "hash": "<string>",
      "sender": "<string>",
      "message_types": [
        "<string>"
      ],
      "addresses": [
        "<string>"
      ],
      "success": true,
      "gas": {
        "wanted": 123,
        "used": 123
      },
      "fees": {
        "amount": "<string>",
        "denom": "<string>"
      },
      "amounts": [
        "<string>"
      ],
      "memo": "<string>",
      "signers": [
        "<string>"
      ],
      "messages": [
        "<string>"
      ]
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

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

Query Parameters

address
string
required

Address to search

network
string
required

Network of Address

limit
number
default:50

Number of items to return

offset
number
default:0

Number of items to skip

startTime
string

Start time

endTime
string

End time

msgTypes
string

Message types separated by comma

status
enum<string>

Status of transaction

Available options:
success,
failed

Response

200 - application/json

Transactions associated with a specific address.

total
number
required
transactions
object[]
required