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

# Get public network statistics



## OpenAPI

````yaml /openapi.json get /network
openapi: 3.1.0
info:
  title: NinjaChat API
  version: 1.0.0
  description: >-
    Clean-break NinjaChat v1. Chat and Responses bill actual token usage; images
    and videos use catalog unit pricing.
servers:
  - url: https://www.ninjachat.ai/api/v1
security: []
paths:
  /network:
    get:
      summary: Get public network statistics
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 90
          required: false
          name: days
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 24
          required: false
          name: top
          in: query
      responses:
        '200':
          description: Measured network volume, model share and provider standings.
          content:
            application/json:
              schema:
                type: object
                properties: {}
      security: []

````