GET
/
v2
/
{chain_name}
/
wallets
/
{wallet_address}
/
nfts
Get NFTs By Wallet
curl --request GET \
  --url https://api.data.ormilabs.com/v2/{chain_name}/wallets/{wallet_address}/nfts \
  --header 'Authorization: Bearer <token>'
{
"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": "0x312e67b47a2a29ae200184949093d92369f80b53",
"standard": "ERC-721",
"symbol": "BAC",
"token_address": "0x312e67b47a2a29ae200184949093d92369f80b53",
"token_id": "3123121",
"token_uri": ""
}
]
}

Authorizations

Authorization
string
header
required

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

wallet_address
string
required

The wallet address.

Example:

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"

chain_name
enum<string>
required

The name or ID of the blockchain.

Available options:
ethereum,
apechain
Example:

"ethereum"

Query Parameters

collection_address
string

NFT collection contract addresses to filter by.

Example:

"0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D"

sort_by
enum<string>
default:token

Sort order for results (e.g., latest, earliest). Values may vary.

Available options:
token,
latest,
earliest
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

Successfully retrieved NFTs for the wallet.

The response is of type object.