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 Social Data

Get Collection Social Stats

Fetch social stats about a collection.

Get Social Stats

GET https://api.dkoda.xyz/v1/collection/social-stats

Fetches the social summary for the given contract address.

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.

{
  "success": 1,
  "data": {
    "volume": 17094,
    "sentiment": 0.2685074364521363,
    "density": 67.75476775476776,
    "uniqueUsers": 11582
  }
}
{
  "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 Social DataNextList Top Influencers

Last updated 2 years ago