GET
/
v2
/
{chain_name}
/
collections
/
{collection_address}
/
nfts
Get NFTs By Collection
curl --request GET \
  --url https://api.data.ormilabs.com/v2/{chain_name}/collections/{collection_address}/nfts
{
"next_cursor": "ICJkYXNkYXMifQ==",
"nfts": [
{
"attributes": [],
"description": "",
"external_uri": "",
"image_uri": "",
"logo": "https://asdadassa.com/adsad.png",
"mint_block_number": 12321312,
"mint_block_timestamp": "2025-05-12T13:00:05Z",
"name": "Bacacacac",
"owner_address": 2.807754160281623e+47,
"standard": "ERC-721",
"symbol": "BAC",
"token_address": 2.807754160281623e+47,
"token_id": "3123121",
"token_uri": ""
}
]
}

Authorizations

Authorization
string
header
required

(Optional) Enter your API key in the format: Bearer <api_key>. Providing an API key may grant higher rate limits or access to additional features. The API will function without an API key for basic access.

Path Parameters

collection_address
string
required

The NFT collection contract address.

Example:

1.074999140385143e+48

chain_name
enum<string>
required

The name or ID of the blockchain.

Available options:
ethereum
Example:

"ethereum"

Query Parameters

limit
integer
default:100

Maximum number of items to return.

Required range: 1 <= x <= 1000
cursor
string

Cursor for pagination to retrieve the next set of results.

Response

200
application/json

Successfully retrieved NFTs for the collection.

The response is of type object.