/collections/{identifier}/accounts

Returns a list of addresses and balances for a specific collection

Parameters

  • identifier REQUIRED (array[string]) - Search by collection identifiers, comma-separated

  • from OPTIONAL (number) - Number of items to skip for the result set

  • size OPTIONAL (number) - Number of items to retrieve

Returns

  • address: (string) Account bech32 address

  • balance: (number) Account current balance

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/collections/ARCRACING-bcdf83/accounts' \
  -H 'accept: application/json'

Result

[
  {
    "address": "erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8",
    "balance": "1"
  },
  {
    "address": "erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8",
    "balance": "1"
  },
  {
    "address": "erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8",
    "balance": "1"
  },
  {
    "address": "erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8",
    "balance": "1"
  },
  {
    "address": "erd1qqqqqqqqqqqqqpgq6wegs2xkypfpync8mn2sa5cmpqjlvrhwz5nqgepyg8",
    "balance": "1"
  },
  {
    "address": "erd1du54y09ytyj4clep5x9x4zxfjkd9kw7cqfng6mp7afy3g4k88zasfzmv69",
    "balance": "1"
  },
  {
    "address": "erd1du54y09ytyj4clep5x9x4zxfjkd9kw7cqfng6mp7afy3g4k88zasfzmv69",
    "balance": "1"
  }
]

Last updated