Applications

Get application information.

get

Given a application ID, it returns application information including creator, approval and clear programs, global and local schemas, and global state.

Authorizations
Path parameters
application-idintegerRequired

An application identifier

Responses
200
Application information
application/json
get
GET /v2/applications/{application-id} HTTP/1.1
Host: algo.nownodes.io
X-Algo-API-Token: YOUR_API_KEY
Accept: */*
{
  "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
    }
  }
}

Last updated