> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coingecko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Real World Assets (RWA)

> Aggregated onchain market data for tokenized stocks, commodities and ETFs, their tokens and issuers.

export const OverviewFooter = ({api = "pro"}) => {
  const isDemo = api === "demo";
  return <CardGroup cols={2}>
      <Card title="Full endpoint list" icon="map" href={isDemo ? "/demo/reference/endpoint-overview" : "/reference/endpoint-overview"} horizontal arrow="true">
        Browse every endpoint available in the {isDemo ? "Demo" : "Pro"} API.
      </Card>
      <Card title="Build with AI" icon="robot" href="/ai-integration" horizontal arrow="true">
        Connect AI agents and coding assistants via MCP, SKILL, CLI, and more.
      </Card>
    </CardGroup>;
};

| Endpoint                                                     | Description                                                                         |
| ------------------------------------------------------------ | ----------------------------------------------------------------------------------- |
| [/rwas/list](/reference/rwas-list)                           | Query all supported tokenized real world assets (RWAs) with RWA ID, name and symbol |
| [/rwas/markets](/reference/rwas-markets)                     | Query all supported RWAs with price, market cap, volume and market data             |
| [/rwas/\{id}](/reference/rwas-id)                            | Query all metadata, market data and tokens of an RWA by RWA ID                      |
| [/rwas/\{id}/tickers](/reference/rwas-id-tickers)            | Query RWA token tickers on centralized and decentralized exchanges by RWA ID        |
| [/rwas/\{id}/market\_chart](/reference/rwas-id-market-chart) | Query historical chart data of an RWA including price, market cap and 24hrs volume  |
| [/rwas/issuers/list](/reference/rwas-issuers-list)           | Query all supported RWA issuers with issuer ID and name                             |
| [/rwas/issuers/\{id}](/reference/rwas-issuers-id)            | Query market data and tokens of an RWA issuer by issuer ID                          |

<br />

<OverviewFooter />
