GET
/
{chainName}
/
v1
/
transactions
curl --request GET \
  --url https://data-api.cloud.ormi.dev/{chainName}/v1/transactions
[
  {
    "block_hash": "<string>",
    "block_number": 123,
    "block_timestamp": "2023-11-07T05:31:56Z",
    "decoded": "<string>",
    "from_address": "<string>",
    "gas": "<string>",
    "gas_price": "<string>",
    "input": "<string>",
    "max_fee_per_gas": "<string>",
    "max_priority_fee_per_gas": "<string>",
    "nonce": "<string>",
    "to_address": "<string>",
    "transaction_hash": "<string>",
    "transaction_index": 123,
    "transaction_type": 123,
    "value": "<string>"
  }
]

Path Parameters

chainName
string
required

Name of the blockchain (e.g., ethereum, polygon, bsc)

Query Parameters

page
integer | null
default:0

Page number

Required range: x >= 0
page-size
integer | null
default:100

Page size

Required range: 1 <= x <= 100

Response

200
application/json
Successful response
block_hash
string
required
block_number
integer
required
block_timestamp
string
required
decoded
string
required
from_address
string
required
gas
string
required
gas_price
string
required
input
string
required
max_fee_per_gas
string
required
max_priority_fee_per_gas
string
required
nonce
string
required
to_address
string
required
transaction_hash
string
required
transaction_index
integer
required
transaction_type
integer
required
value
string
required