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

# Exchange

> An exchange where a token can be or has been traded.

### TypeScript shape

```ts theme={null}
interface Exchange {
  id: string;
  address: string;
  color: string | null;
  name: string | null;
  exchangeVersion: string | null;
  iconUrl: string | null;
  networkId: number;
  tradeUrl: string | null;
}
```

<ResponseField name="id" type="String!">
  Exchange identifier.
</ResponseField>

<ResponseField name="address" type="String!">
  Contract or exchange address.
</ResponseField>

<ResponseField name="networkId" type="Int!">
  Network ID the exchange is on.
</ResponseField>

<ResponseField name="name" type="String">
  Display name of the exchange.
</ResponseField>

<ResponseField name="exchangeVersion" type="String">
  Exchange protocol or version.
</ResponseField>

<ResponseField name="iconUrl" type="String">
  Icon URL for the exchange.
</ResponseField>

<ResponseField name="tradeUrl" type="String">
  URL to trade on this exchange.
</ResponseField>

<ResponseField name="color" type="String">
  Brand or theme color.
</ResponseField>
