NftsImp..::..GetNftAsync Method (String, String)
Get current data (name, price_floor, volume_24h ...) for an NFT collection.
Namespace:
CoinGeckoAPI.ImpsAssembly: CoinGeckoAPI (in CoinGeckoAPI.dll)
Syntax
public Task<NftResponse> GetNftAsync( string asset_platform_id, string contract_address )
Public Function GetNftAsync ( _ asset_platform_id As String, _ contract_address As String _ ) As Task(Of NftResponse)
Parameters
- asset_platform_id
- Type: String
The id of the platform issuing tokens (See GetAssetPlatformsAsync(String) for list of options, use filter=nft param).
- contract_address
- Type: String
The contract_address of the nft collection (See GetNftsListAsync(NftsListOrderBy, String, UInt32, UInt32) for list of nft collection with metadata).
Return Value
A Task<NftResponse> representing the asynchronous operation.Exceptions
Exception | Condition |
---|---|
ArgumentNullException | asset_platform_id - Invalid value. Value must be a valid NFT issuing platform (EX: ethereum). |
ArgumentNullException | contract_address - Invalid value. Value must be a valid NFT contract address. |