Orderly Network admin API

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

Operations 1

DELETE /v1/admin/points/stage Delete stage

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-admin-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-admin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EVM Admin API
  description: ''
  version: 1.0.0
servers:
- url: https://api.orderly.org
  description: Mainnet
- url: https://testnet-api.orderly.org
  description: Testnet
tags:
- name: admin
paths:
  /v1/admin/points/stage:
    delete:
      summary: Delete stage
      deprecated: false
      description: '**Limit: 10 requests per 1 second per user per IP address**


        `DELETE /v1/admin/points/stage`


        Delete a specific stage.


        Only callable by Broker Admin.

        '
      tags:
      - admin
      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_id
        in: query
        description: Stage ID to delete
        required: true
        schema:
          type: number
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicResponse'
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