Entities

List All Entities

The paginated API is used to query for multiple entities. You can apply filters through the query parameter to search for specific entities.

Method: GET

https://ark.nownodes.io/api/entities?page=1&limit=100

Example response: 200

{
    "meta": {
        "totalCountIsEstimate": false,
        "count": 0,
        "pageCount": 1,
        "totalCount": 0,
        "next": null,
        "previous": null,
        "self": "/entities?page=1&limit=100",
        "first": "/entities?page=1&limit=100",
        "last": "/entities?page=1&limit=100"
    },
    "data": []
}

Retrieve an Entity

Specific entities can be retrieved by the ID of their registration transaction.

Method: POST

https://ark.nownodes.io/api/entities/b16f907a75837d65c62cc077a2e3e56d5201ef84080b281c0750377220b23bba

Example response: 404

{
    "statusCode": 404,
    "error": "Not Found",
    "message": "Entity not found"
}

Last updated