# Suverse Solana NFT Metadata API

> Suverse Solana NFT Metadata API is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Fetches comprehensive metadata for any Solana NFT or compressed NFT (cNFT), including name, symbol, image, collection, creators, attributes, ownership, and on-chain authorities.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-nft-metadata
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-6023528e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VIoZx0pa0xrxTaupSGELG

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 proxy-suverse-io-6023528e -d '<json body>'
```

Example prompt: Can you pull up the full metadata for the Solana NFT with mint address 7nE9GvcwsqzYxmJLSrX5HYyGeRpCDGEVbwbPqEWKHSai — I want to see its traits, collection, creators, royalty splits, and current owner.

## When to prefer this

Use this endpoint when you need full, structured NFT metadata for a specific Solana or compressed NFT mint address — especially when you need creator royalty splits, on-chain attributes, ownership, and Metaplex/DAS-standard fields in a single call. Prefer this over generic blockchain explorers when building wallet portfolio displays, marketplace bots, or analytics dashboards that need normalized, agent-ready output.

## Known failure modes

- Invalid or non-existent mint address returns an error or empty result
- Non-Solana addresses (e.g. Ethereum contract addresses) will fail or return no data
- Compressed NFT (cNFT) not indexed by DAS may return incomplete metadata
- Network timeouts or RPC unavailability may cause intermittent failures
- Payment failure (insufficient USDC) will block the request

## How this service works

Comprehensive metadata for any Solana NFT or compressed NFT (cNFT). Name, symbol, image, collection, creators with royalties, attributes, ownership, mutability, on-chain authorities. Metaplex + DAS standards. AI agent NFT browser, marketplace bot, wallet portfolio, Solana NFT API.

## Output

Returns a structured JSON object with the NFT's full metadata: name, symbol, image URL, description, collection name and address, creator wallet addresses with verified status and royalty percentage splits, on-chain attributes/traits, current owner address, mutability flag, update authority, and DAS/Metaplex Token Metadata standard fields.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-6023528e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
