Skip to main content

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.

Returns

getNetworkStatus
[MetadataResponse!]!
List of network indexing status objects. See MetadataResponse.

Arguments

networkIds
[Int!]!
required
List of network IDs to fetch status for (e.g. [1, 1399811149]).

Example

query GetNetworkStatus {
  getNetworkStatus(networkIds: [1]) {
    networkId
    networkName
    lastProcessedBlock
    lastProcessedTimestamp
  }
}

Playground