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

# Get market metadata

> Read the off-chain document pointed at by metadataURI.

Pictures and copy are not on `summary` or `listMarkets`. Ask the market for the off-chain document, or `null`.

```ts theme={null}
const metadata = await market.metadata()
```

```ts theme={null}
Promise<{
  version: 1
  image: string | null
  outcomeImages: (string | null)[]
  description: string | null
  resolutionCriteria: string | null
  [key: string]: unknown
} | null>
```

Want a thumbnail on a catalog card? Call `client.market(row.address).metadata()`. Do not wait for the list to pre-stuff images.

## Next

[Set market metadata](/market/set-metadata)
