# Helius DAS Single Asset Metadata (Solana)

> Helius DAS Single Asset Metadata (Solana) is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches full on-chain metadata for a single Solana asset — SPL token or compressed NFT — via the Helius Digital Asset Standard (DAS) API.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/solana/helius/asset
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-spraay-app-75ca92e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_drHVDFrfLyTUH47PH3m1j

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gateway-spraay-app-75ca92e5
```

Example prompt: Can you pull the full metadata for Solana asset DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to see its name, image, attributes, creators, and whether it's a compressed NFT?

## When to prefer this

Choose this endpoint when you need complete, structured DAS-compliant metadata for a specific Solana asset (SPL token or compressed NFT) by its mint/asset address. Prefer this over generic RPC calls when you need normalized metadata including traits, creators, and compression details in a single call.

## Known failure modes

- Invalid or malformed asset ID returns a 400 error
- Asset ID not found on-chain returns a 404 or empty result
- Network or RPC timeout returns a 5xx error
- Missing required 'id' query parameter returns a validation error
- Payment not included or insufficient returns a 402 Payment Required

## How this service works

Helius DAS: full metadata for a single Solana asset (SPL token or compressed NFT).

## Output

Returns a rich metadata object for the requested Solana asset, including name, symbol, description, image URI, NFT attributes/traits, creator list, royalty percentage, ownership details, and compression status (for cNFTs). Follows the Helius Digital Asset Standard (DAS) schema.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "id": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-75ca92e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.spraay.app](https://www.zero.xyz/host/gateway.spraay.app/llms.txt)
