/tokens/{identifier}/transactions/count

Returns the total number of transactions for a specific token

Parameters

  • identifier REQUIRED(string) - Search by token identifier

  • sender OPTIONAL : (string) - Address of the transaction sender

  • receiver OPTIONAL : (string) - Address of the transaction receiver

  • senderShard OPTIONAL : (number) - Id of the shard the sender address belongs to

  • receiverShard OPTIONAL : (number) - Id of the shard the receiver address belongs to

  • miniBlockHash OPTIONAL : (string) - Filter by miniblock hash

  • hashes OPTIONAL : (array[string]) - Filter by a comma-separated list of transaction hashes

  • status OPTIONAL : (string) - Status of the transaction (success / pending / invalid / fail)

  • search OPTIONAL : (string) - Search in data object

  • before OPTIONAL : (number) - Before timestamp

Returns

  • count: (number) - total number of transactions for a specific token

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/tokens/ASTRO-91f2cc/transactions/count' \
  -H 'accept: application/json'

Result

87

Last updated