# Syra Asset Detail Lookup

> Syra Asset Detail Lookup is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Fetches detailed information for a specific crypto or financial asset by symbol, Solana mint address, or asset ID

## Facts

- Endpoint: GET https://api.syraa.fun/assets/detail
- 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/syra-asset-detail-lookup-f6a553b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UwIwQ695xmw9zwXNkto4g

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 syra-asset-detail-lookup-f6a553b0
```

Example prompt: Can you pull up the full asset details for Solana (mint address So11111111111111111111111111111111111111112) from Syra?

## When to prefer this

Use this endpoint when an AI agent needs to resolve and retrieve detailed metadata about a specific crypto asset — especially Solana-native tokens identified by mint address — within the Syra financial agent ecosystem. Prefer this over generic market data APIs when the agent needs to work with tokens.xyz asset IDs or canonical Syra asset references, particularly in workflows involving Solana wallets, DeFi operations, or x402 payment-gated contexts.

## Known failure modes

- Asset not found for given symbol, mint, or assetId — returns error or empty result
- Invalid or malformed Solana mint address — likely returns a 4xx error
- Payment failure (x402) — endpoint requires 0.005 USDC per call; missing payment results in 402 response
- Ambiguous freeform query resolves to wrong asset — caller should prefer explicit ref or mint over q param
- API downtime or Solana RPC issues — service unavailable or timeout

## How this service works

Machine money for agents on Solana: live x402 pay-per-call APIs, MCP tools, typed SDK. Earn · Treasury · Invest · Spend · Grow.

## Output

Returns a JSON object with ok: true and paid: true, plus detailed asset information for the queried crypto or financial asset, including resolved canonical reference data from the Syra/tokens.xyz ecosystem.

## 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",
     "queryParams": {
      "q": {
       "type": "string",
       "required": false,
       "description": "Asset ref (btc, solana, apple), Solana mint, solana-<mint> assetId, or freeform q"
      },
      "ref": {
       "type": "string",
       "required": false,
       "description": "Canonical ref e.g. btc, solana, apple"
      },
      "mint": {
       "type": "string",
       "required": false,
       "description": "Solana mint address (base58)"
      },
      "assetId": {
       "type": "string",
       "required": false,
       "description": "Tokens.xyz assetId e.g. bitcoin or solana-<mint>"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/syra-asset-detail-lookup-f6a553b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.syraa.fun](https://www.zero.xyz/host/api.syraa.fun/llms.txt)
