> ## Documentation Index
> Fetch the complete documentation index at: https://ormilabs.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# 0xGraph API reference

## Introduction

0xGraph is a next-generation hosted Subgraph solution, fully compatible with The Graph and built for real-time, high-throughput blockchain applications. It lets developers index, and query smart contract data at sub-second latency - without managing infrastructure.

## References

<div
  className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 not-prose"
  style={{
marginBottom: '4rem',
maxWidth: '1200px',
margin: '0 auto 4rem auto',
alignItems: 'stretch'
}}
>
  <a
    href="/docs/api-reference/0xGraph/cli/reference"
    style={{ 
textDecoration: 'none', 
color: 'inherit',
display: 'flex'
}}
  >
    <div
      className="group border border-gray-200 rounded-xl p-6 hover:border-green-500 hover:shadow-lg transition-all duration-200 cursor-pointer"
      style={{
  minHeight: '200px',
  display: 'flex',
  flexDirection: 'column',
  maxWidth: '380px',
  width: '100%'
}}
    >
      <div className="flex items-center mb-4">
        <div className="text-lg font-semibold text-gray-900" role="heading" aria-level="3">CLI</div>
      </div>

      <p className="text-gray-600 text-sm flex-grow">
        Deploy and manage your subgraphs using CLI, fully compatible with The Graph’s workflow for seamless setup and migration.
      </p>
    </div>
  </a>

  {" "}

  <a
    href="/docs/api-reference/0xGraph/tags/create-tag"
    style={{
textDecoration: "none",
color: "inherit",
display: "flex",
}}
  >
    <div
      className="group border border-gray-200 rounded-xl p-6 hover:border-green-500 hover:shadow-lg transition-all duration-200 cursor-pointer"
      style={{
  minHeight: "200px",
  display: "flex",
  flexDirection: "column",
  maxWidth: "380px",
  width: "100%",
}}
    >
      <div className="flex items-center mb-4">
        <div className="text-lg font-semibold text-gray-900" role="heading" aria-level="3">
          Tags
        </div>
      </div>

      <p className="text-gray-600 text-sm flex-grow">
        Assign and manage tags to version your subgraphs, enabling hot-swaps and updates without changing endpoints.
      </p>
    </div>
  </a>

  {" "}

  <a
    href="/docs/api-reference/0xGraph/subgraph/remove-subgraph"
    style={{
textDecoration: "none",
color: "inherit",
display: "flex",
}}
  >
    <div
      className="group border border-gray-200 rounded-xl p-6 hover:border-green-500 hover:shadow-lg transition-all duration-200 cursor-pointer"
      style={{
  minHeight: "200px",
  display: "flex",
  flexDirection: "column",
  maxWidth: "380px",
  width: "100%",
}}
    >
      <div className="flex items-center mb-4">
        <div className="text-lg font-semibold text-gray-900" role="heading" aria-level="3">
          Subgraph
        </div>
      </div>

      <p className="text-gray-600 text-sm flex-grow">Manage your subgraphs using the CLI including removing your subgraph.</p>
    </div>
  </a>
</div>
