Dopex stats API

The stats API from Dopex — 7 operation(s) for stats.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/dopex-stats-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

dopex-stats-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Stryke deposit stats API
  description: ''
  version: '1.0'
  contact: {}
servers:
- url: https://api.stryke.xyz
tags:
- name: stats
paths:
  /clamm/stats/fees:
    get:
      operationId: StatsController_getFees
      summary: Get premium and protocol fees earned by a options market
      parameters:
      - name: chainId
        required: true
        in: query
        description: Chain ID of the network
        schema:
          enum:
          - 5000
          - 42161
          type: number
      - name: optionMarket
        required: true
        in: query
        description: Address of the option market
        schema:
          type: string
      - name: from
        required: true
        in: query
        schema:
          type: number
      - name: to
        required: true
        in: query
        schema:
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeesResponseDto'
      tags:
      - stats
  /clamm/stats/volume:
    get:
      operationId: StatsController_getVolume
      summary: Get volume generated by a options market
      parameters:
      - name: chainId
        required: true
        in: query
        description: Chain ID of the network
        schema:
          enum:
          - 5000
          - 42161
          type: number
      - name: optionMarket
        required: true
        in: query
        description: Address of the option market
        schema:
          type: string
      - name: from
        required: true
        in: query
        schema:
          type: number
      - name: to
        required: true
        in: query
        schema:
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: number
      tags:
      - stats
  /clamm/stats/dau:
    get:
      operationId: StatsController_getDau
      summary: Get number of unique users
      parameters:
      - name: chainId
        required: true
        in: query
        description: Chain ID of the network
        schema:
          enum:
          - 5000
          - 42161
          type: number
      - name: optionMarket
        required: true
        in: query
        description: Address of the option market
        schema:
          type: string
      - name: from
        required: true
        in: query
        schema:
          type: number
      - name: to
        required: true
        in: query
        schema:
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: number
      tags:
      - stats
  /clamm/stats/open-interest:
    get:
      operationId: StatsController_getOpenInterest
      summary: Get current open interest of a options market
      parameters:
      - name: chainId
        required: true
        in: query
        description: Chain ID of the network
        schema:
          enum:
          - 5000
          - 42161
          type: number
      - name: optionMarket
        required: true
        in: query
        description: Address of the option market
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: number
      tags:
      - stats
  /clamm/stats/tvl:
    get:
      operationId: StatsController_getTvl
      summary: Get total value locked in a options market
      parameters:
      - name: chainId
        required: true
        in: query
        description: Chain ID of the network
        schema:
          enum:
          - 5000
          - 42161
          type: number
      - name: optionMarket
        required: true
        in: query
        description: Address of the option market
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: number
      tags:
      - stats
  /clamm/stats/tvl/{pool}:
    get:
      operationId: StatsController_getTvlForPool
      summary: Get total value locked in a pool specific to CLAMM
      parameters:
      - name: chainId
        required: true
        in: query
        description: Chain ID of the network
        schema:
          enum:
          - 5000
          - 42161
          type: number
      - name: pool
        required: true
        in: path
        description: Address of the pool
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: number
      tags:
      - stats
  /clamm/stats/delta:
    get:
      operationId: StatsController_getPnlDelta
      summary: Get trade performance of a user on specified chains
      parameters:
      - name: chains
        required: true
        in: query
        description: Chain IDs of networks to query option markets for
        schema:
          type: array
          items:
            type: string
      - name: user
        required: true
        in: query
        description: Address of the user
        schema:
          type: string
      - name: from
        required: true
        in: query
        schema:
          type: number
      - name: to
        required: true
        in: query
        schema:
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PnlDeltaResponseDto'
      tags:
      - stats
components:
  schemas:
    PnlDeltaResponseDto:
      type: object
      properties:
        delta:
          type: number
          readOnly: true
        timestamp:
          type: number
          readOnly: true
      required:
      - delta
      - timestamp
    FeesResponseDto:
      type: object
      properties:
        premiums:
          type: number
          readOnly: true
        protocolFees:
          type: number
          readOnly: true
      required:
      - premiums
      - protocolFees