Returns all the metadata properties associated with a given global entity. The returned response is in a paginated format, ordered by first appearance on the ledger.
{"address":"<entity-address>"}
defines upper boundary (inclusive) for queried data. i.e { "at_state_version" = {"epoch" = 10} }, will return data till 10 epoch.
{ "at_state_version" = {"epoch" = 10} }
POST /state/entity/page/metadata HTTP/1.1 Host: xrd-gateway.nownodes.io Content-Type: application/json Accept: */* Content-Length: 30 { "address": "<entity-address>" }
Entity Metadata (paginated)
{ "ledger_state": { "network": "<network-name>", "state_version": 1, "proposer_round_timestamp": "text", "epoch": 1, "round": 1 }, "total_count": 1, "next_cursor": "text", "items": [ { "key": "text", "value": { "raw_hex": "text", "programmatic_json": { "kind": "Bool", "type_name": "text", "field_name": "text" }, "typed": { "type": "String" } }, "is_locked": true, "last_updated_at_state_version": 1 } ], "address": "text" }