Contracts
Returns a list of contracts created by (or related to) the specified account.
Path parameters
addressstringRequired
Account address (starting with tz or KT)
Query parameters
sortone of | nullableOptional
Sorts contracts by specified field. Supported fields: id
(default, desc), balance
, creationLevel
.
offsetone of | nullableOptional
Specifies which or how many items should be skipped
limitinteger · int32 · max: 10000OptionalDefault:
Maximum number of items to return
100
Responses
200Success
application/json
get
GET /v1/accounts/{address}/contracts HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
{
"kind": "text",
"alias": "text",
"address": "text",
"balance": 1,
"delegate": {
"alias": "text",
"address": "text",
"active": true
},
"creationLevel": 1,
"creationTime": "2025-07-18T08:04:51.903Z"
}
]