List Asset Appraisals

Fetch assets appraisals for a given contract address.

List Asset Appraisals

GET https://api.dkoda.xyz/v1/asset/appraisals

Fetches the asset appraisals for a given collection and optional asset filters.

Query Parameters

Name
Type
Description

contractAddress*

String

The contract address of the collection.

e.g. "0x23581767a106ae21c074b2276d25e5c3e136a68b"

assetId

String

A comma-separated list of assets to filter appraisals with. If not provided, the appraisals for all assets in the collection will be fetched. You can provide up to 20 asset ids in one call.

e.g. "1749,1783,5123"

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.

Headers

Name
Type
Description

x-api-key*

String

The API key to use when making requests.

{
  "successful": 1,
  "nextPage": "MTIzOTF1ODIzOTgxMnUzOTE4MnUzOTEyMw==",
  "data": [
    {
      "contractAddress": "0x23581767a106ae21c074b2276d25e5c3e136a68b",
      "assetId": "9000",
      "fairMarketValue": "29100000000000000000",
      "confidence": "0.86",
      "currency": "ETH"
    },
    {
      "contractAddress": "0x23581767a106ae21c074b2276d25e5c3e136a68b",
      "assetId": "9001",
      "fairMarketValue": "23000000000000000000",
      "confidence": "0.86",
      "currency": "ETH"
    },
    {
      "contractAddress": "0x23581767a106ae21c074b2276d25e5c3e136a68b",
      "assetId": "9002",
      "fairMarketValue": "18100000000000000000",
      "confidence": "0.86",
      "currency": "ETH"
    },
    {
      "contractAddress": "0x23581767a106ae21c074b2276d25e5c3e136a68b",
      "assetId": "9003",
      "fairMarketValue": "18300000000000000000",
      "confidence": "0.86",
      "currency": "ETH"
    },
    {
      "contractAddress": "0x23581767a106ae21c074b2276d25e5c3e136a68b",
      "assetId": "9004",
      "fairMarketValue": "20200000000000000000",
      "confidence": "0.86",
      "currency": "ETH"
    }
  ]
}

Good to know: This endpoint requires an API key to be present in the request header. Please contact us to request one.

Last updated