EVEDEX Statistics API

The Statistics API from EVEDEX — 6 operation(s) for statistics.

Operations 6

GET /auth/statistics/total
GET /auth/statistics/online-users
GET /auth/statistics/charts
GET /api/public/statistics/total
GET /api/public/statistics/online-users
GET /api/public/statistics/charts

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/evedex-statistics-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

evedex-statistics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Evedex Statistics API
  version: 1.0.0
  description: 'Operations tagged Statistics across 2 of this provider''s published API definitions: evedex-auth-openapi.json, evedex-exchange-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://auth-api.evedex.com
- url: https://exchange-api.evedex.com
tags:
- name: Statistics
paths:
  /auth/statistics/total:
    get:
      tags:
      - Statistics
      security: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TotalStatisticResponse'
    servers:
    - url: https://auth-api.evedex.com
  /auth/statistics/online-users:
    get:
      tags:
      - Statistics
      security: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OnlineUsersCountResponse'
    servers:
    - url: https://auth-api.evedex.com
  /auth/statistics/charts:
    get:
      tags:
      - Statistics
      security: []
      parameters:
      - in: query
        name: from
        schema:
          type: string
        required: true
      - in: query
        name: to
        schema:
          type: string
        required: true
      - in: query
        name: instrument
        schema:
          type: string
      - in: query
        name: name
        schema:
          type: string
          enum:
          - dailyActiveUsers
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatisticChartResponse'
    servers:
    - url: https://auth-api.evedex.com
  /api/public/statistics/total:
    get:
      tags:
      - Statistics
      security: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TotalStatisticResponse_2'
    servers:
    - url: https://exchange-api.evedex.com
  /api/public/statistics/online-users:
    get:
      tags:
      - Statistics
      security: []
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OnlineUsersCountResponse'
    servers:
    - url: https://exchange-api.evedex.com
  /api/public/statistics/charts:
    get:
      tags:
      - Statistics
      security: []
      parameters:
      - in: query
        name: from
        schema:
          type: string
        required: true
      - in: query
        name: to
        schema:
          type: string
        required: true
      - in: query
        name: instrument
        schema:
          type: string
      - in: query
        name: name
        schema:
          type: string
          enum:
          - tradingVolume
          - userRegistred
          - activeDepositors
          - feesVolume
          - totalValueLocked
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatisticChartResponse'
    servers:
    - url: https://exchange-api.evedex.com
components:
  schemas:
    OnlineUsersCountResponse:
      type: object
      properties:
        onlineUsersCount:
          type: integer
          default: 0
      required:
      - onlineUsersCount
    StatisticChartResponse:
      type: object
      additionalProperties:
        type: array
        items:
          type: object
          properties:
            date:
              type: string
            value:
              type: number
            instrument:
              type: string
            name:
              type: string
            cumulative:
              type: number
          required:
          - date
          - value
          - name
          - cumulative
    TotalStatisticResponse:
      type: object
      properties:
        weeklyActiveUsers:
          type: integer
          default: 0
      required:
      - weeklyActiveUsers
    TotalStatisticResponse_2:
      type: object
      properties:
        registredUsers:
          type: integer
          default: 0
        tradingVolume:
          type: number
          default: 0
        activeDepositors:
          type: integer
          default: 0
        feesVolume:
          type: number
          default: 0
        totalValueLocked:
          type: number
          default: 0
      required:
      - registredUsers
      - tradingVolume
      - activeDepositors
      - feesVolume
      - totalValueLocked
  securitySchemes:
    InternalToken:
      type: http
      scheme: bearer
    AccessToken:
      type: http
      scheme: bearer
    RefreshToken:
      type: http
      scheme: bearer
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key
x-refined-from:
- evedex-auth-openapi.json
- evedex-exchange-openapi.json