Orderly Network client API

The client API from Orderly Network — 1 operation(s) for client.

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/orderly-network-client-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

orderly-network-client-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: EVM admin client API
  description: ''
  version: 1.0.0
servers:
- url: https://api.orderly.org
  description: Mainnet
- url: https://testnet-api.orderly.org
  description: Testnet
tags:
- name: client
paths:
  /v1/client/points/user_statistics:
    get:
      summary: Get user statistics
      deprecated: false
      description: '**Limit: 10 requests per 1 second per user per IP address**


        `GET /v1/client/points/user_statistics`


        Returns daily point statistics for a specific user.

        '
      tags:
      - client
      parameters:
      - name: orderly-timestamp
        in: header
        required: true
        schema:
          type: string
      - name: orderly-account-id
        in: header
        required: true
        schema:
          type: string
      - name: orderly-key
        in: header
        required: true
        schema:
          type: string
      - name: orderly-signature
        in: header
        required: true
        schema:
          type: string
      - name: stage
        in: query
        description: Filter by Stage
        required: true
        schema:
          type: number
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetUserStatisticsResponse'
components:
  schemas:
    BasicResponse:
      required:
      - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989
    GetUserStatisticsResponse:
      allOf:
      - $ref: '#/components/schemas/BasicResponse'
      - type: object
        properties:
          data:
            type: object
            properties:
              stage:
                type: number
                example: 1
              address:
                type: string
                example: 0x123...
              trading_point:
                type: number
                example: 50
              pnl_point:
                type: number
                example: 30
              referral_point:
                type: number
                example: 20
              stage_rank:
                type: number
                example: 1
              stage_points:
                type: number
                example: 100
              weekly_breakdown:
                type: object
                properties:
                  this_week:
                    type: object
                    properties:
                      trading_point:
                        type: number
                        example: 50
                      pnl_point:
                        type: number
                        example: 30
                      referral_point:
                        type: number
                        example: 20
                      rank:
                        type: number
                        example: 1
                  last_week:
                    type: object
                    properties:
                      trading_point:
                        type: number
                        example: 50
                      pnl_point:
                        type: number
                        example: 30
                      referral_point:
                        type: number
                        example: 20
                      rank:
                        type: number
                        example: 1