List Marketplace Listings
Fetch historical and current asset listings from different marketplaces.
List Asset Listings
GET
https://api.dkoda.xyz/v1/asset/listings
Lists NFT asset listings for the given contract address, an optional asset id filter, an optional marketplace filter and an optional status filter.
Query Parameters
contractAddress*
String
The contract address of the collection.
e.g. "0x60e4d786628fea6478f785a6d7e704777c86a7c6"
assetId
String
An optional id of a specific asset to filter listings by. If not provided, the listings for all assets in the collection will be fetched.
e.g. "8206"
limit
Integer
A limit on the number of sales to be returned. Limit can range between 1 and 50. The default is 20.
cursor
String
A cursor value to use to fetch the next page. If no cursor is provided, the first page will be fetched which returns the latest sales.
status
String
A value to filter statuses with. Can be one of CREATED
, FULFILLED
, CANCELLED
, EXPIRED
.
marketplace
String
A value to filter marketplaces with. Can be one of OPENSEA
, X2Y2
, LOOKSRARE
.
Headers
x-api-key*
String
The API key to use when making requests.
Important: Certain marketplaces don't differentiate between EXPIRED
and CANCELLED statuses
. Some listings might have a status of CANCELLED
even if they expired.
Last updated