get_solana_asset_report
Read Helius DAS getAsset metadata, ownership and interface for an exact Solana mint or NFT. Requires the user’s Helius key from secure setup; not an authenticity or safety endorsement.
Solana token or NFT report
Read Helius DAS getAsset metadata, ownership and interface for an exact Solana mint or NFT. Requires the user’s Helius key from secure setup; not an authenticity or safety endorsement.
Permission and calling convention
Required scope: chain:read. This tool reads data or account-owned state.
This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.
POST /api/tools/get_solana_asset_report
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/jsonInput schema
Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"asset": {
"type": "string",
"pattern": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
}
},
"required": [
"asset"
],
"additionalProperties": false
}