GET
/
v1
/
access
/
owner
/
products
curl --request GET \
  --url https://api.oneofnone.io/v1/access/owner/products \
  --header 'x-api-key: <api-key>'
{
  "count": 1,
  "products": [
    {
      "title": "1ofx Founders Hoodie",
      "image": "https://example.com/nft-image.jpg",
      "contract_address": "0x12345abcde",
      "token_id": "123456789",
      "token_uri": "https://example.com/token-uri",
      "external_url": "https://example.com/assets/123456789",
      "relative_url": "/nft/12345",
      "total_supply": "1000",
      "symbol": "NFTSYMB",
      "chain": "ETH"
    }
  ]
}

Authorizations

x-api-key
string
header
required

The API key required for accessing protected routes. It should be included in the request headers as x-api-key.

Query Parameters

wallet
string
required

The wallet address of the owner.

chain
enum<string>

The blockchain to query for NFTs. If not provided, defaults to querying all supported chains.

Available options:
ETH,
POLY,
BASE,
BASE_SEPOLIA,
ALL
page_key
string

Key for pagination of large NFT sets.

Response

200
application/json
Successfully retrieved products owned by the wallet.
count
integer

The total number of owned products.

Example:

1

products
object[]

A list of owned products (NFTs).