To use the NFT Valuations API, you must have an API Key from us to give you access to the endpoints. If you want to receive an API Key, please fill out the form here.

📘

Rate Limit

Each API Key has a rate limit of 5 requests /second.

Once you have your API key, you must include it in the header of all requests using the authorizationToken name.

Example

import axios from 'axios'

axios({
  url: 'https://api.nftvaluations.com/production/collections',
  method: 'GET',
  headers: {
    'Accept-Encoding': 'gzip, deflate, br',
    'authorizationToken': 'YOUR API KEY HERE'
  }
}).then( response => {
  // Process the response
}).catch( error => {
  // Handle errors
})