Skip to main content
GET
/
v1
/
assets
/
{chainId}
/
{contractAddress}
/
{tokenId}
Get a specific asset
curl --request GET \
  --url https://api.lootexplus.com/v1/assets/{chainId}/{contractAddress}/{tokenId} \
  --header 'x-api-key: <api-key>'
{
  "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
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

chainId
number
required

Chain ID

Example:

1868

contractAddress
string
required

Contract address

Example:

"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab"

tokenId
string
required

Token ID

Example:

"42"

Response

200 - application/json

Asset found

id
string
required

Asset ID

Example:

"c070a82a-2798-46f9-830e-6916d8d30320"

chainId
number
required

Chain ID

Example:

1868

contractAddress
string
required

Contract address

Example:

"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab"

tokenId
string
required

Token ID

Example:

"42"

schema
enum<string>
required

Schema of the asset

Available options:
ERC721,
ERC1155
Example:

"ERC721"

name
string

Name of the asset

Example:

"Cool NFT"

description
string

Description of the asset

Example:

"This is a cool NFT"

imageUrl
string

Image URL of the asset

Example:

"https://example.com/image.png"

animationUrl
string

Animation URL of the asset

Example:

"https://example.com/animation.mp4"

tokenUri
string

Token URI of the asset

Example:

"https://example.com/metadata.json"

bestListing
object

Best listing for the asset

Example:
{
"unitPrice": "1000000000000000000",
"priceSymbol": "ETH",
"quantity": "1",
"offerer": "0x1234567890abcdef1234567890abcdef12345678",
"orderHash": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef"
}
collection
object

Collection of the asset