> ## Documentation Index
> Fetch the complete documentation index at: https://orderly.network/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Orderly key

> **Limit: 10 requests per 1 second per IP address**

`POST /v1/client/remove_orderly_key`

Removes an orderly key from an account and deactivates it for future use.




## OpenAPI

````yaml orderly.openapi post /v1/client/remove_orderly_key
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/client/remove_orderly_key:
    post:
      tags:
        - private
      summary: Remove Orderly key
      description: >
        **Limit: 10 requests per 1 second per IP address**


        `POST /v1/client/remove_orderly_key`


        Removes an orderly key from an account and deactivates it for future
        use.
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveOrderlyKeyBody'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicResponse'
      deprecated: false
components:
  schemas:
    RemoveOrderlyKeyBody:
      type: object
      required:
        - orderly_key
      properties:
        orderly_key:
          type: string
          description: The Orderly key to be removed from the account
    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

````