Public API
  • Getting Started
  • API Keys
  • API Reference
    • NFT Metadata
      • Get Collection Scores
      • List Asset Appraisals
      • List Asset Rarities
    • NFT Transactions
      • Get Collection Stats
      • List Asset Sales
      • List Marketplace Listings
    • NFT Social Data
      • Get Collection Social Stats
      • List Top Influencers
      • List Top Tweets
Powered by GitBook
On this page
  1. API Reference
  2. NFT Metadata

Get Collection Scores

Fetches Dkoda scores for a given contract address.

Get Collection Scores

GET https://api.dkoda.xyz/v1/collection/scores

Fetches Dkoda scores for a given collection.

Query Parameters

Name
Type
Description

contractAddress**

String

The contract address of the collection.

e.g. "0x23581767a106ae21c074b2276d25e5c3e136a68b"

Headers

Name
Type
Description

x-api-key**

String

The API key to use when making requests.

{
  "successful": 1,
  "data": [
    {
      "name": "Moonbirds",
      "contractAddress": "0x23581767a106ae21c074b2276d25e5c3e136a68b",
      "hype": 6.778730306637118,
      "gains": 5.4947,
      "community": 8.79839446814987,
      "total": 7.023941591595663
    }
  ]
}
{
  "successful": 0,
  "errorMessage": "Invalid contract address. Please ensure the contract address is a valid Ethereum address."
}
{
  "successful": 0,
  "errorMessage": "No API key is specified, please contact us at [email protected] to request an API key."
}

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

PreviousNFT MetadataNextList Asset Appraisals

Last updated 2 years ago