# RWA Product Profile Lookup

> RWA Product Profile Lookup is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a full tokenized real-world asset (RWA) product profile including identity, issuer, TVL, yield, APY, on-chain supply cross-check, and growth trends by slug, symbol, or issuer name.

## Facts

- Endpoint: GET https://api.agentstools.dev/rwa/product
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rwa-product-profile-lookup-096f7947
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vIAi1qtHxWdr9qHHT9_et

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 rwa-product-profile-lookup-096f7947
```

Example prompt: Give me the full RWA product profile for BlackRock BUIDL — I want the current TVL, per-chain breakdown, 7/30/90-day growth trend, pool APY, and an on-chain total supply cross-check, preferably on Ethereum.

## When to prefer this

Use this endpoint when you need a comprehensive, fused profile of a tokenized RWA product — combining off-chain identity/issuer data, normalized categorization, DefiLlama TVL, yield/APY, and independent on-chain supply verification in a single call. Prefer this over raw DefiLlama or on-chain RPC calls when you need a cited, normalized, multi-source view of a specific RWA token rather than raw protocol or chain data.

## Known failure modes

- Slug, symbol, or issuer+name not found — returns 404 or empty result
- Ambiguous issuer/name combination — may require slug for precise lookup
- On-chain cross-check unavailable for a given chain — partial data returned
- TVL or APY data stale if DefiLlama upstream is delayed
- Chain parameter ignored if on-chain data not indexed for that chain

## How this service works

Full tokenized-RWA product profile for a slug, a token symbol, or an issuer with a name. Fuses identity and issuer, the normalized sub-category and backing type, on-chain TVL with a per-chain distribution, a growth trend of TVL over 7, 30 and 90 days, pool-level yield and APY, and an independent on-chain totalSupply cross-check for a curated token, with cited sources and a derived-signal frame.

## Output

A structured JSON profile containing: product identity and slug, issuer details, normalized sub-category and backing type, on-chain TVL with per-chain distribution, TVL growth trend over 7/30/90 days, pool-level yield and APY, an independent on-chain totalSupply cross-check, cited data sources, and a derived signal frame summarizing the asset.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "name": {
       "type": "string",
       "description": "Product name, paired with issuer"
      },
      "slug": {
       "type": "string",
       "description": "DefiLlama product slug, such as blackrock-buidl"
      },
      "chain": {
       "type": "string",
       "description": "Chain to prefer for the on-chain cross-check"
      },
      "issuer": {
       "type": "string",
       "description": "Issuer name, paired with name (alternative to slug)"
      },
      "symbol": {
       "type": "string",
       "description": "Token symbol, such as BUIDL or PAXG (alternative to slug)"
      }
     }
    }
   },
   "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/rwa-product-profile-lookup-096f7947/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
