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

# getNetworkStatus

> Get indexing status per network: last processed block, timestamp, and network name.

### Returns

<ResponseField name="getNetworkStatus" type="[MetadataResponse!]!">
  List of network indexing status objects. See [MetadataResponse](/api-reference/graphql/types/MetadataResponse).
</ResponseField>

### Arguments

<ResponseField name="networkIds" type="[Int!]!" required>
  List of network IDs to fetch status for (e.g. \[1, 1399811149]).
</ResponseField>

### Example

```graphql theme={null}
query GetNetworkStatus {
  getNetworkStatus(networkIds: [1]) {
    networkId
    networkName
    lastProcessedBlock
    lastProcessedTimestamp
  }
}
```

### Playground

<iframe src={`https://graphql.mobula.io/graphql?query=${encodeURIComponent('query GetNetworkStatus($networkIds: [Int!]!) { getNetworkStatus(networkIds: $networkIds) { networkId networkName lastProcessedBlock lastProcessedTimestamp } }')}&variables=${encodeURIComponent('{"networkIds": [1, 1399811149]}')}`} title="GraphQL Playground" style={{ width: '100%', minHeight: '600px', border: '1px solid var(--color-border)', borderRadius: '8px' }} />
