Apps local state
get
Lookup an account's asset holdings, optionally for a specific ID.
Path parameters
account-idstringRequired
account string
Query parameters
application-idintegerOptional
Application ID
include-allbooleanOptional
Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.
limitintegerOptional
Maximum number of results to return. There could be additional pages even if the limit is not reached.
nextstringOptional
The next page of results. Use the next token provided by the previous results.
Responses
200
(empty)
application/json
400
Response for errors
application/json
404
Response for errors
application/json
500
Response for errors
application/json
get
GET /v2/accounts/{account-id}/apps-local-state HTTP/1.1
Host: algo-index.nownodes.io
Accept: */*
{
"apps-local-states": [
{
"closed-out-at-round": 1,
"deleted": true,
"id": 1,
"key-value": [
{
"key": "text",
"value": {
"bytes": "text",
"type": 1,
"uint": 1
}
}
],
"opted-in-at-round": 1,
"schema": {
"num-byte-slice": 1,
"num-uint": 1
}
}
],
"current-round": 1,
"next-token": "text"
}
Last updated