Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.0xarchive.io/llms.txt

Use this file to discover all available pages before exploring further.

Source OpenAPI: 0xArchive API 1.5.0; 116 paths; 90 component schemas. Per-side spec nested in Hip4OutcomeAggregate.side_specs. One element per side (typically two: side 0 = Yes, side 1 = No).

Required Fields

FieldTypeDescription
asset_idinteger:int64Public asset ID for this side
coinstringCoin identifier for this side.
namestringHuman label for this side
sideintegerSide index: 0 = Yes, 1 = No

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Hip4SideSpec",
  "description": "Per-side spec nested in `Hip4OutcomeAggregate.side_specs`. One element per side (typically two: side 0 = Yes, side 1 = No).",
  "type": "object",
  "required": [
    "asset_id",
    "coin",
    "name",
    "side"
  ],
  "properties": {
    "asset_id": {
      "description": "Public asset ID for this side",
      "type": "integer",
      "format": "int64",
      "example": 100000000
    },
    "coin": {
      "description": "Coin identifier for this side. Returned in `#`-prefixed form. REST paths accept either the bare numeric id (e.g. `0`) or the `#`-prefixed form (e.g. `#0`).",
      "type": "string",
      "example": "#0"
    },
    "name": {
      "description": "Human label for this side",
      "type": "string",
      "example": "Yes"
    },
    "side": {
      "description": "Side index: 0 = Yes, 1 = No",
      "type": "integer",
      "enum": [
        0,
        1
      ],
      "example": 0
    }
  }
}

Referenced By

No route references were found in OpenAPI.
Last modified on May 18, 2026