2025-11-11
In this version 1.2.19, Ethereum Classic chain support, Optimism Internal Transaction API addition,
and Aptos Node and Indexer API updates have been applied.
1. Optimism – Internal Transaction API Added
Internal Transaction data can now be queried in Optimism Web3 Data API.
You can now analyze transactions occurring on the Optimism chain in more detail.
2. Web3 Data API – Ethereum Classic Support
Ethereum Classic can now be used in Nodit Web3 Data API.
Query Ethereum Classic on-chain data easily and quickly!
Quick Links
Blockchain API
- Get Block by Hash or Number
- Get Blocks Within Range
- Get Gas Price
- Get Internal Transactions By Account
- Get Internal Transactions By Transaction Hash
- Get Next Nonce by Account
- Get Total Transaction Count By Account
- Get Transactions By Hashes
- Get Transaction By Hash
- Get Transactions By Account
- Get Transactions In Block
- Is Contract
- Search Events
NFT API
- Get NFT Contract Metadata by Contracts
- Get NFTs Owned By Account
- Get NFT Transfers By Account
- Get NFT Transfers By Contract
- Get NFT Transfers By TokenId
- Get NFT Transfers Within Range
- Get NFT Contracts by Account
- Get NFT Holders by Token ID
- Get NFT Holders by Contract
- Get NFT Metadata by Contract
- Get NFT Metadata by Token IDs
- Search NFT Contract Metadata By Keyword
- Sync NFT Metadata
Token API
- Get Token Allowance
- Get Token Contract Metadata by Contracts
- Get Token Holders By Contract
- Get Token Prices by Contracts
- Get Tokens Owned By Account
- Get Token Transfers by Account
- Get Token Transfers by Contract
- Get Token Transfers Within Range
- Search Token Contract Metadata by Keyword
Native API
Stats API
3. Aptos Node API – New Endpoints Added
Two new endpoints have been added to the Aptos Node API.
You can now easily query useful account-level data.
- Get account balance
- Get account transaction summaries
4. Aptos Indexer API – Event Schema Improvement
The Event schema of Aptos Indexer API has been improved, enhancing filtering performance and usability.
You can now filter not only by transaction_version and event_index but also by frequently used account_address and type fields.
-
Example query:
query MyQuery {
events(
where: {account_address: {_eq: "0x0000000000000000000000000000000000000000000000000000000000000001"}}
order_by: {transaction_version: desc}
) {
account_address
creation_number
event_index
sequence_number
transaction_block_height
transaction_version
type
data
}
}query MyQuery {
events(
where: {type: {_eq: "0x1::fungible_asset::Deposit"}}
order_by: {transaction_version: desc}
) {
account_address
creation_number
event_index
sequence_number
transaction_block_height
transaction_version
type
data
}
}
You can try the improved API right away at Nodit Docs - GraphQL!