Skip to main content
GET
/
v1
/
address
/
payment
Get Payment
curl --request GET \
  --url https://api.range.org/v1/address/payment \
  --header 'X-API-KEY: <api-key>'
{
  "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

hash
string
required

Txn Hash

Response

200 - application/json

Payment associated with a specific hash. This includes both incoming and outgoing transaction.

id
string
required
version
number
required
network
string
required
height
string
required
index
number
required
timestamp
string
required
hash
string
required
sender
string
required
message_types
string[]
required
addresses
string[]
required
success
boolean
required
gas
object
required
fees
object
required
amounts
string[]
required
memo
string
required
signers
string[]
required
messages
string[]
required