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

# MetadataResponse

> Indexing metadata per network (last processed block and timestamp).

### TypeScript shape

```ts theme={null}
interface MetadataResponse {
  lastProcessedBlock: number | null;
  lastProcessedTimestamp: number | null;
  networkId: number;
  networkName: string;
}
```

<ResponseField name="lastProcessedBlock" type="Int!">
  Last block indexed for this network.
</ResponseField>

<ResponseField name="lastProcessedTimestamp" type="Int!">
  Unix timestamp of the last processed block.
</ResponseField>

<ResponseField name="networkId" type="Int!">
  Network ID.
</ResponseField>

<ResponseField name="networkName" type="String!">
  Display name of the network.
</ResponseField>
