Download OpenAPI specification:Download
The Nval API is the access point to all Nval NFT pricing and market data
The Nval API is your access point for the most advanced NFT market pricing analytics data available.
Our technology utilizes our proprietary data set that combines on-chain, off-chain, OTC, and extraneous data points to calculate Fair Market Value (FMV) and NFT benchmarks.
Nval data is responsive to current and historical market conditions allowing regulated (or any) businesses, protocols, and platforms to manage assets and offer better products to their customers.
Nval prices NFTs on Ethereum, Polygon (Matic), and soon on: Flow, Solana, Binance Smart Chain, Arbitrum, Optimism, Tezos, Avalanche, Klatyn, etc. We’re adding more chains steadily and will support all blockchains where NFTs markets exist.
OAuth2 - an open protocol to allow secure authorization in a simple and standard method from web, mobile and desktop applications.
Use to request Token
A successful response
invalid client credientals
client_id=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx&client_secret=secret&grant_type=client_credentials
{- "access_token": "string",
- "token_type": "string",
- "expires_in": 0
}
Used to request the current price prediction for a specified token
A successful response
Token not available
Collection not available
{- "count": 0,
- "next": "string",
- "previous": "string",
- "results": [
- {
- "datetime": "string",
- "price": 0,
- "usd_price": 0,
- "token_price": 0,
- "token_name": "string",
- "confidence": 0,
- "nft_info": {
- "collection_address": "string",
- "collection_name": "string",
- "nft_id": 0,
- "nft_title": "string",
- "token_name": "string"
}, - "feature_importance": [
- {
- "category": {
- "property1": "string",
- "property2": "string"
}, - "subcategories": {
- "property1": "string",
- "property2": "string"
}
}
]
}
]
}
Used to request price prediction history for a specified token, date range, and interval
A successful response
Token not available
Collection not available
{- "count": 0,
- "next": "string",
- "previous": "string",
- "results": [
- {
- "datetime": "string",
- "price": 0,
- "usd_price": 0,
- "token_price": 0,
- "token_name": "string",
- "confidence": 0,
- "nft_info": {
- "collection_address": "string",
- "collection_name": "string",
- "nft_id": 0,
- "nft_title": "string",
- "token_name": "string"
}, - "feature_importance": [
- {
- "category": {
- "property1": "string",
- "property2": "string"
}, - "subcategories": {
- "property1": "string",
- "property2": "string"
}
}
]
}
]
}
Used to request transactions within a given date range for a token
A successful response
Token not available
Collection not available
{- "count": 0,
- "next": "string",
- "previous": "string",
- "results": [
- {
- "datetime": "string",
- "price": 0,
- "usd_price": 0,
- "token_price": 0,
- "token_name": "string",
- "confidence": 0,
- "nft_info": {
- "collection_address": "string",
- "collection_name": "string",
- "nft_id": 0,
- "nft_title": "string",
- "token_name": "string"
}, - "feature_importance": [
- {
- "category": {
- "property1": "string",
- "property2": "string"
}, - "subcategories": {
- "property1": "string",
- "property2": "string"
}
}
]
}
]
}
Get all the supported collections for a chain
A successful response
Collections not available for selected chain
[- {
- "collection_address": "string",
- "collection_name": "string"
}
]