Applications

get

Search for applications

Query parameters
application-idintegerOptional

Application ID

creatorstringOptional

Filter just applications with the given creator address.

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
get
GET /v2/applications HTTP/1.1
Host: algo-index.nownodes.io
Accept: */*
{
  "applications": [
    {
      "created-at-round": 1,
      "deleted": true,
      "deleted-at-round": 1,
      "id": 1,
      "params": {
        "approval-program": "Ynl0ZXM=",
        "clear-state-program": "Ynl0ZXM=",
        "creator": "text",
        "extra-program-pages": 1,
        "global-state": [
          {
            "key": "text",
            "value": {
              "bytes": "text",
              "type": 1,
              "uint": 1
            }
          }
        ],
        "global-state-schema": {
          "num-byte-slice": 1,
          "num-uint": 1
        },
        "local-state-schema": {
          "num-byte-slice": 1,
          "num-uint": 1
        }
      }
    }
  ],
  "current-round": 1,
  "next-token": "text"
}
get

Lookup application.

Path parameters
application-idintegerRequired
Query parameters
include-allbooleanOptional

Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.

Responses
200
(empty)
application/json
get
GET /v2/applications/{application-id} HTTP/1.1
Host: algo-index.nownodes.io
Accept: */*
{
  "application": {
    "created-at-round": 1,
    "deleted": true,
    "deleted-at-round": 1,
    "id": 1,
    "params": {
      "approval-program": "Ynl0ZXM=",
      "clear-state-program": "Ynl0ZXM=",
      "creator": "text",
      "extra-program-pages": 1,
      "global-state": [
        {
          "key": "text",
          "value": {
            "bytes": "text",
            "type": 1,
            "uint": 1
          }
        }
      ],
      "global-state-schema": {
        "num-byte-slice": 1,
        "num-uint": 1
      },
      "local-state-schema": {
        "num-byte-slice": 1,
        "num-uint": 1
      }
    }
  },
  "current-round": 1
}