The Assets API provides endpoints for querying native tokens and NFTs on the Cardano blockchain. You can retrieve asset information, locate NFTs, and check blacklisted policies.Documentation Index
Fetch the complete documentation index at: https://nexus.gerowallet.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Available endpoints
Get asset info
Retrieve detailed asset information and metadata
Get NFT address
Find the current address holding a specific NFT
Get blacklist
Get list of blacklisted policy IDs
Asset identifiers
Cardano native tokens are identified by two components:| Component | Description | Format |
|---|---|---|
policy_id | Minting policy hash | 56 hex characters |
asset_name | Token name | 0-64 hex characters |
{policy_id}{asset_name}
For example:
- Policy ID:
f0ff48bbb7bbe9d59a40f1ce90e9e9d0ff5002ec48f232b49ca0fb9a - Asset name:
4745524f(hex for “GERO”) - Full ID:
f0ff48bbb7bbe9d59a40f1ce90e9e9d0ff5002ec48f232b49ca0fb9a4745524f
Asset information
The asset info endpoint returns:- policy_id - Minting policy hash
- asset_name - Token name (hex encoded)
- asset_name_ascii - Token name (ASCII if printable)
- fingerprint - CIP-14 asset fingerprint
- quantity - Total supply
- initial_mint_tx_hash - Transaction hash of first mint
- mint_or_burn_count - Number of mint/burn events
- onchain_metadata - CIP-25/CIP-68 metadata
- metadata - Token registry metadata
NFT location
For non-fungible tokens (quantity = 1), you can find the current holder address using the NFT address endpoint. This is useful for:- Verifying NFT ownership
- Tracking NFT transfers
- Building NFT marketplaces
Blacklisted assets
Some assets may be blacklisted due to:- Known scam tokens
- Malicious smart contracts
- Copyright violations