# x402.ochinimus.app SPL Token Metadata (Helius DAS)

> x402.ochinimus.app SPL Token Metadata (Helius DAS) is a paid API for AI agents from x402.ochinimus.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Fetches SPL token metadata for a given mint address on Solana using the Helius Digital Asset Standard (DAS) API

## Facts

- Endpoint: GET https://x402.ochinimus.app/api/token-metadata/:mint
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-ochinimus-app-spl-token-metadata-helius-das-8985edcf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DUuquFGQKrTXsjjnrNL6A

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 x402-ochinimus-app-spl-token-metadata-helius-das-8985edcf
```

Example prompt: Can you look up the metadata for Solana token mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I need the name, symbol, and any other on-chain details from the Helius DAS API.

## When to prefer this

Use this endpoint when you need to resolve a Solana SPL token mint address to its human-readable metadata (name, symbol, image, description) via the Helius DAS API. Prefer this over generic RPC calls when you want structured, DAS-normalized metadata without managing your own Helius API key. Well-suited for DeFi agents, portfolio tools, and wallet UIs that need token info on demand.

## Known failure modes

- Invalid or malformed mint address returns an error or empty result
- Mint address not found on Solana mainnet returns 404 or empty metadata
- Helius DAS API rate limit or downtime causes upstream failure
- Payment not processed (x402 payment required) results in 402 response

## How this service works

SPL token metadata via Helius DAS

## Output

Returns SPL token metadata sourced from Helius DAS including token name, symbol, description, image URI, on-chain attributes, supply, and other Metaplex/DAS metadata fields for the specified mint address.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ochinimus-app-spl-token-metadata-helius-das-8985edcf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ochinimus.app](https://www.zero.xyz/host/x402.ochinimus.app/llms.txt)
