Skip to main content
Source OpenAPI: 0xArchive API 1.5.0; 140 paths; 119 component schemas. Get lightweight public statistics used by website/product surfaces. This is a no-auth public utility route, not a legacy alias.

Route Metadata

FieldValue
MethodGET
Path/v1/stats
operationIdgetPublicStats
TagSystem
FamilySystem
Deprecated or legacyno

Response Contracts

Status 200

Public statistics

application/json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getPublicStats response 200",
  "description": "Public lightweight API/site statistics.",
  "type": "object",
  "properties": {
    "l4_open_orders": {
      "description": "Current L4 open-order count used by public status/product surfaces.",
      "type": "integer",
      "format": "int64",
      "example": 1234567
    }
  },
  "additionalProperties": true
}

Status 400

Invalid request

application/json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getPublicStats response 400",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    }
  }
}
OpenAPI example
{
  "code": 400,
  "error": "Invalid request parameters"
}

Status 429

Rate limit exceeded

application/json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "getPublicStats response 429",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    }
  }
}
OpenAPI example
{
  "code": 429,
  "error": "Rate limit exceeded"
}
Last modified on June 19, 2026