Skip to main content
IXO Blocksync is an indexing and query service. It is not the canonical protocol transaction interface.

Overview

  • Use this API for indexed, flexible querying.
  • Treat this as a service layer over chain data.
  • Use protocol gateways for direct protocol operations.

Service boundary

  • In scope: GraphQL query patterns, filters, and pagination.
  • Out of scope: transaction submission and module-level protocol semantics.

Example queries

query {
  entities(first: 10) {
    edges {
      node {
        id
        name
        type
      }
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
query {
  entities(
    filter: {
      type: { equalTo: "ORGANIZATION" }
      status: { equalTo: "ACTIVE" }
    }
  ) {
    edges {
      node {
        id
        name
        status
      }
    }
  }
}

Authentication and endpoints

  • Auth requirements: /reference/authentication-matrix
  • Endpoint mapping by network: /reference/networks-and-endpoints
  • Pagination: /api-reference/pagination
  • Blockchain RPC API: /api-reference/rpc-api
  • Product and SDK map: /reference/product-and-sdk-map