# Agent402 RWA Issuer Detail Lookup

> Agent402 RWA Issuer Detail Lookup is a paid API for AI agents from agent402.tools, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Fetches detailed market data for a specific real-world asset (RWA) token issuer, including market cap, volume, and tokenized asset list.

## Facts

- Endpoint: GET https://agent402.tools/api/rwa-issuer
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-rwa-issuer-detail-lookup-5bea95ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0GRFXv7vdcVFA0NKiQNIA

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 agent402-rwa-issuer-detail-lookup-5bea95ed
```

Example prompt: Pull up the RWA issuer details for 'coinbase-ecosystem' — I want to see the full list of tokenized assets they issue, their current market cap, and 24-hour trading volume.

## When to prefer this

Choose this endpoint when you need structured market data (market cap, volume, token list) for a specific known RWA issuer by ID, especially within the Coinbase ecosystem or other indexed issuers. Prefer it over general crypto market APIs when you specifically need tokenized real-world asset issuer context, per-call pay-as-you-go pricing with no API key, or when integrating into an agent workflow that pays over x402/USDC.

## Known failure modes

- Invalid or unknown issuer ID returns an error or empty response
- Rate limiting or payment failure over x402 results in 402 Payment Required
- CoinGecko data source temporarily unavailable causing stale or missing data
- Cached response may lag behind real-time market movements
- Missing required 'id' query parameter causes a 400 Bad Request

## How this service works

One issuer of tokenized real-world assets by id: aggregate tokenized market cap, 24h cap change and 24h volume, plus every token it issues with symbol, name and contract address per platform (e.g. Coinbase's Base-chain tokenized Apple, Nvidia, Meta, Alphabet). Use rwa-issuers for ids. Cached in-process for 5 minutes.

## Output

Returns a JSON object with the issuer's ID, display name, total token count, market cap in USD, 24h volume, 24h market cap change, last updated timestamp, data source (e.g. CoinGecko), fetch timestamp, cache status, and an array of tokenized asset objects each containing token ID, name, symbol, and per-platform contract addresses.

## 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",
       "description": "Issuer id from rwa-issuers (coinbase-ecosystem, ...)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "source",
      "fetchedAt",
      "cached",
      "id",
      "name",
      "marketCap",
      "marketCapChange24h",
      "volume24h",
      "updatedAt",
      "count",
      "tokens"
     ],
     "properties": {
      "id": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "count": {
       "type": "integer"
      },
      "cached": {
       "type": "boolean"
      },
      "source": {
       "type": "string"
      },
      "tokens": {
       "type": "array"
      },
      "fetchedAt": {
       "type": "string"
      },
      "marketCap": {
       "type": "number"
      },
      "updatedAt": {
       "type": "string"
      },
      "volume24h": {
       "type": "number"
      },
      "marketCapChange24h": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "coinbase-ecosystem",
  "name": "Coinbase",
  "count": 4,
  "cached": false,
  "source": "coingecko",
  "tokens": [
   {
    "id": "nvidia-coinbase-tokenized-stock",
    "name": "NVIDIA (Coinbase Tokenized Stock)",
    "symbol": "NVDAC",
    "platforms": {
     "base": "0xb20000000000000000000078ee7ce2fe4908108c"
    }
   }
  ],
  "fetchedAt": "2026-09-02T18:50:00.000Z",
  "marketCap": 9982908.56,
  "updatedAt": "2026-09-02T17:00:00Z",
  "volume24h": 20001148.07,
  "marketCapChange24h": 100918.35
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-rwa-issuer-detail-lookup-5bea95ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
