Skip to main content
GET
/
v1
/
assets
/
explore
Explore assets with search filters
curl --request GET \
  --url https://api.lootexplus.com/v1/assets/explore \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "c070a82a-2798-46f9-830e-6916d8d30320",
      "chainId": 1868,
      "contractAddress": "0xfc8e7bda94874f6baa591dd70af0fda1fca201ab",
      "tokenId": "42",
      "schema": "ERC721",
      "name": "Cool NFT",
      "description": "This is a cool NFT",
      "imageUrl": "https://example.com/image.png",
      "animationUrl": "https://example.com/animation.mp4",
      "tokenUri": "https://example.com/metadata.json",
      "bestListing": {
        "unitPrice": "1000000000000000000",
        "priceSymbol": "ETH",
        "quantity": "1",
        "offerer": "0x1234567890abcdef1234567890abcdef12345678",
        "orderHash": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef"
      },
      "collection": {
        "id": "c070a82a-2798-46f9-830e-6916d8d30320",
        "slug": "cool-nft",
        "chainId": 1868,
        "contractAddress": "0xfc8e7bda94874f6baa591dd70af0fda1fca201ab",
        "name": "Cool NFT",
        "imageUrl": "https://cool-nft.com/image.png",
        "description": "Cool NFT",
        "isVerified": true
      }
    }
  ],
  "pagination": {
    "total": 100,
    "page": 1,
    "limit": 10
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

chainId
number

Chain ID

Example:

1868

contractAddress
string

Contract address

Example:

"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab"

ownerAddress
string

Owner address

Search by name

isVerified
boolean

Is verified

Example:

true

hasListings
boolean

Has listings

page
number

Page number

Example:

1

limit
number

Page size

Example:

10

Response

200 - application/json

Paginated list of assets

data
object[]
required
pagination
object
required