Boxes

Get box names for a given application.

Given an application ID, returns the box names of that application sorted lexicographically.

GEThttps://algo-index.nownodes.io/v2/applications/{application-id}/boxes
Path parameters
application-id*integer
Query parameters
Response

Box names of an application

Body
application-id*integer

[appidx] application index.

boxes*array of BoxDescriptor (object)
next-tokenstring

Used for pagination, when making another request provide this token with the next parameter.

Request
const response = await fetch('https://algo-index.nownodes.io/v2/applications/{application-id}/boxes', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "application-id": 0,
  "boxes": [
    {
      "name": "Ynl0ZXM="
    }
  ],
  "next-token": "text"
}