Transactions API
Transactions API is the history surface. Use it when you want indexed transaction or receipt views without repeatedly polling raw RPC methods and joining the results yourself.
Best fit
- Account activity feeds.
- Debugging and support tooling.
- Transaction and receipt lookups by hash.
- Block and block-range history queries.
When not to use it
- Use FastNear API when you need balances, NFTs, staking, or public-key lookups.
- Use RPC Reference when you need canonical node behavior or transaction submission.
Base URLs
https://tx.main.fastnear.comhttps://tx.test.fastnear.com
Auth and availability
- These pages do not currently use API keys or bearer tokens.
- The service is built for indexed history access rather than transaction submission.
Common starting points
Transactions by hashwhen you already know the transaction ID.Account historyfor activity feeds and account debugging.Receipt lookupfor execution-flow investigation.Block rangewhen you want a bounded history scan.
Troubleshooting
I expected to submit a transaction here
This family is for indexed history queries, not for sending signed transactions. Use raw RPC for submission.
I need pagination guidance
/v0/account uses an opaque resume_token, while /v0/blocks is range and limit based. Reuse opaque tokens exactly as returned.
Need one canonical transaction status result?
Use raw RPC instead of the indexed history family.