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

# Grid capacity

> Live public network stats — node counts by hardware, lifetime jobs served/submitted, total $SGL staked, per-model availability. No auth, open CORS.



## OpenAPI

````yaml GET /grid/capacity
openapi: 3.1.0
info:
  title: x402 Singularity Layer API
  description: >-
    OpenAPI-backed reference for marketplace discovery, payment routes,
    webhooks, wallet-first auth, agent endpoints, and ERC-8004 flows.
  version: 1.0.0
servers:
  - url: https://api.x402layer.cc
security: []
tags:
  - name: Marketplace
    description: Public discovery and listing lookup
  - name: Public Endpoints
    description: Public endpoint metadata and hosted checkout context
  - name: Public Payment Links
    description: Hosted public payment-link lookup
  - name: Payments
    description: Hosted x402 payment challenge routes
  - name: Receipts
    description: Signed receipt lookup and verification helpers
  - name: Ratings
    description: Public listing ratings and authenticated rating actions
  - name: Webhooks
    description: Seller webhook management API
  - name: Agent Auth
    description: Wallet-first challenge and verification routes
  - name: Agent Endpoints
    description: Create, read, top up, and delete agent endpoints
  - name: ERC-8004
    description: Agent registry and registration lifecycle routes
  - name: Marketplace Agents
    description: Public ERC-8004 marketplace discovery routes
  - name: Compute Catalog
    description: Compute plans, regions, and OS catalog
  - name: Compute Instances
    description: Provision, inspect, extend, and destroy compute instances
  - name: Compute API Keys
    description: API keys for compute agent access
  - name: Fundraiser Campaigns
    description: List, view, create, and edit fundraiser campaigns
  - name: Fundraiser Contributions
    description: Record and list campaign contributions
  - name: Fundraiser Comments
    description: Campaign comment threads
  - name: Fundraiser Media
    description: Campaign image uploads and OG images
  - name: Enterprise
    description: >-
      Enterprise partner configuration, endpoint listing, revenue stats, and
      transaction ledger
  - name: Staking
    description: Agentic $SGL staking
  - name: SGL Grid
    description: >-
      Decentralized, confidential, OpenAI-compatible inference served by
      attested TEE nodes.
  - name: Compute Credits
    description: Prepaid USDC credit balance shared across Machines and Grid.
paths:
  /grid/capacity:
    servers:
      - url: https://grid.x402compute.cc
    get:
      tags:
        - SGL Grid
      summary: Grid capacity & network stats
      description: >-
        Live public network stats — node counts by hardware, lifetime jobs
        served/submitted, total $SGL staked, per-model availability. No auth,
        open CORS.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  active_nodes:
                    type: integer
                    example: 3
                  total_nodes:
                    type: integer
                    example: 10
                  apple_nodes:
                    type: integer
                    example: 3
                  intel_nodes:
                    type: integer
                    example: 0
                  amd_nodes:
                    type: integer
                    example: 0
                  nvidia_nodes:
                    type: integer
                    example: 0
                  total_jobs:
                    type: integer
                    example: 330
                    description: Completed jobs across currently-active nodes.
                  jobs_completed:
                    type: integer
                    example: 398
                    description: Lifetime completed (served) jobs — never shrinks.
                  jobs_submitted:
                    type: integer
                    example: 585
                    description: Lifetime submitted (total) jobs.
                  total_sgl_staked:
                    type: number
                    example: 1200001
                  at_capacity:
                    type: boolean
                    example: false
                  models:
                    type: array
                    items:
                      type: object
                      properties:
                        model:
                          type: string
                          example: qwen-2.5-14b
                        nodes:
                          type: integer
                          example: 2
                        busy_nodes:
                          type: integer
                          example: 0
                        free_slots:
                          type: integer
                          example: 2
                        at_capacity:
                          type: boolean
                          example: false

````