> ## 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.

# Network

> A network supported on Mobula.

### TypeScript shape

```ts theme={null}
interface Network {
  name: string;
  id: number;
  networkShortName: string | null;
}
```

<ResponseField name="name" type="String!">
  Display name of the network (e.g. Ethereum, Solana).
</ResponseField>

<ResponseField name="id" type="Int!">
  Network ID used in API calls.
</ResponseField>

<ResponseField name="networkShortName" type="String">
  Short identifier for the network (e.g. eth, sol).
</ResponseField>
