v1

latestOpenAPI 3.1.02026-07-243035381.4 MB
Algorand - Tatum API

Access Algorand Indexer GET node endpoints

1 credit per API call

This endpoint is deprecated. Use the HTTP-based JSON RPC driver instead.

Use this endpoint URL as a http-based url to connect directly to the Algorand node provided by Tatum. You can check all available APIs here - https://developer.algorand.org/docs/rest-apis/indexer/.
Example call for Get Tx By ID is described in the response. https://developer.algorand.org/docs/rest-apis/indexer/#get-v2transactionstxid.
URL used for this call would be

https://api.tatum.io/v3/algorand/node/indexer/YOUR\_API\_KEY/v2/transactions/HNIQ76UTJYPOLZP5FWODYABBJPYPGJNEM2QEJSMDMQRWEKHEYJHQ

get/v3/algorand/node/indexer/{xApiKey}/{indexerPath}

Path parameters

xApiKeystring required
Example:asdlkfjnqunalkwjfnq2oi303294857k

Tatum X-API-Key used for authorization.

indexerPathstring required
Example:v2/accounts

** path of indexer.

Response

OK

closeRewardsnumber

rewards applied to close-remainder-to account.

closingAmountnumber

closing amount for transaction.

confirmedRoundnumber

Round when the transaction was confirmed.

feenumber

Transaction fee

firstValidnumber

First valid round for this transaction.

genesisHashstring

Hash of genesis block

genesisIdstring

genesis block ID.

idstring

transaction ID

intraRoundOffsetnumber

Offset into the round where this transaction was confirmed.

lastValidnumber

Last valid round for this transaction.

notestring

Free form data

paymentTransactionobject

payment Transaction

receiverRewardsnumber

rewards applied to receiver account.

roundTimenumber

Time when the block this transaction is in was confirmed.

senderstring

Sender's address

senderRewardsnumber

rewards applied to sender account.

signatureobject

signature

txTypestring

indicates what type of transaction this is. Different types have differnet fields.

Example response

{
  "confirmedRound": 16775567,
  "fee": 0.001,
  "firstValid": 16775565,
  "genesisHash": "SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI=",
  "genesisId": "testnet-v1.0",
  "id": "HNIQ76UTJYPOLZP5FWODYABBJPYPGJNEM2QEJSMDMQRWEKHEYJHQ",
  "intraRoundOffset": 1,
  "lastValid": 16775571,
  "note": "cGluZ3Bvbmf0Jyl21QrtLw==",
  "roundTime": 1632167753,
  "sender": "U6QEM4KM7KKGCLH4FELZBGJEVVSF556ELXHUOZC4ESPFS4O4V4VQXKQRXQ",
  "txType": "pay"
}