Get NFTs By Contract
Get NFTs for a given contract address, including metadata for all NFTs (where available).
Get NFTs for a given contract address, including metadata for all NFTs (where available).
Query parameters
cursorstringOptionalDefault:
The cursor returned in the previous response (used for getting the next page).
""
limitintegerOptionalDefault:
The desired page size of the result.
10
chainall ofRequired
The chain to query
string · enumOptionalPossible values:
An enumeration.
formatall ofOptionalDefault:
The format of the token ID
decimal
string · enumOptionalPossible values:
An enumeration.
addressstringRequired
The address
Responses
200
Successful Response
application/json
404
ErrorMessage
application/json
422
HTTPValidationError
application/json
get
GET /api/nfts/by_contract?chain=eth&address=text HTTP/1.1
Host:
Accept: */*
{
"status": "SYNCED",
"total": 0,
"page": 0,
"page_size": 0,
"cursor": "",
"result": [
{
"token_address": "text",
"name": "",
"symbol": "",
"contract_type": "text",
"token_id": "",
"amount": "",
"token_hash": "",
"owner_of": "",
"block_number_minted": "text",
"block_number": "text",
"token_uri": "",
"last_token_uri_sync": "",
"last_metadata_sync": "",
"minter_address": "",
"metadata": ""
}
]
}
Last updated