GET
/
api
/
v1
/
developer
/
nfts
/
listings
/
{chain}
/
{contract_address}
/
{token_id}
curl --request GET \
  --url https://api.allium.so/api/v1/developer/nfts/listings/{chain}/{contract_address}/{token_id} \
  --header 'X-API-KEY: <api-key>'
{
  "data": {
    "chain": "<string>",
    "contract_address": "<string>",
    "token_id": "<string>",
    "maker": "<string>",
    "source": "<string>",
    "status": "active",
    "price": {}
  },
  "error": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Headers

x-allium-team-id
string

Path Parameters

chain
enum<string>
required
Available options:
ethereum,
abstract,
apechain,
arbitrum,
arbitrum-nova,
avalanche,
base,
optimism,
polygon,
shape,
soneium,
xai,
zero,
zora
contract_address
string
required

Address of the NFT Contract.

token_id
string
required

Token ID of the NFT.

Query Parameters

limit
integer
default:20

Number of items to return in a response.

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

Cursor to paginate through results.

Response

200
application/json
Successful Response
data
object
error
string