> ## 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 <>
      <hr />
      <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 in {isDemo ? "Demo" : "Pro"} API.
        </Card>
        <Card title="Build with AI" icon="robot" href="/ai-integration" horizontal arrow="true">
          Connect AI agents and integration.
        </Card>
      </CardGroup>
    </>;
};

| Endpoint                                                | Description                                                                         |
| ------------------------------------------------------- | ----------------------------------------------------------------------------------- |
| [/rwas/list](/demo/reference/rwas-list)                 | Query all supported tokenized real world assets (RWAs) with RWA ID, name and symbol |
| [/rwas/markets](/demo/reference/rwas-markets)           | Query all supported RWAs with price, market cap, volume and market data             |
| [/rwas/\{id}](/demo/reference/rwas-id)                  | Query all metadata, market data and tokens of an RWA by RWA ID                      |
| [/rwas/issuers/list](/demo/reference/rwas-issuers-list) | Query all supported RWA issuers with issuer ID and name                             |
| [/rwas/issuers/\{id}](/demo/reference/rwas-issuers-id)  | Query market data and tokens of an RWA issuer by issuer ID                          |

<OverviewFooter api="demo" />
