Accounts

Get accounts

get

Returns a list of accounts.

Query parameters
idone of | nullableoptional

Filters by internal id.

addressone of | nullableoptional

Filters by address.

typeone of | nullableoptional

Filters accounts by type (user, delegate, contract, rollup, smart_rollup, ghost).

kindone of | nullableoptional

Filters accounts by contract kind (delegator_contract or smart_contract)

delegateone of | nullableoptional

Filters accounts by delegate. Allowed fields for .eqx mode: none.

balanceone of | nullableoptional

Filters accounts by balance

stakedone of | nullableoptional

Filters accounts by participation in staking

lastActivityone of | nullableoptional

Filters accounts by last activity level (where the account was updated)

selectone of | nullableoptional

Specify comma-separated list of fields to include into response or leave it undefined to return full object. If you select single field, response will be an array of values in both .fields and .values modes.

sortone of | nullableoptional

Sorts delegators by specified field. Supported fields: id (default), balance, rollupBonds, firstActivity, lastActivity, numTransactions, numContracts.

offsetone of | nullableoptional

Specifies which or how many items should be skipped

limitinteger · int32 · max: 10000optional

Maximum number of items to return

Default: 100
Responses
curl -L \
  --url 'https://xtz-index.nownodes.io/v1/accounts'
[
  {
    "type": "text"
  }
]

Get account by address

get

Returns an account with the specified address.

Path parameters
addressstringrequired

Account address

Query parameters
legacybooleanoptional

If true (by default), the metadata field will contain tzkt profile info, or TZIP-16 metadata otherwise. This is a part of a deprecation mechanism, allowing smooth migration.

Default: true
Responses
curl -L \
  --url 'https://xtz-index.nownodes.io/v1/accounts/{address}'
{
  "type": "text"
}