Created applications

get

Lookup an account's created application parameters, 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
get
GET /v2/accounts/{account-id}/created-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"
}

Last updated