> ## 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.

# Get current Orderly key info

> **Limit 10 requests per 60 seconds**

`GET /v1/client/key_info`

Retrieves all registered orderly keys under the account.




## OpenAPI

````yaml orderly.openapi get /v1/client/key_info
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/key_info:
    get:
      tags:
        - private
      summary: Get current Orderly key info
      description: |
        **Limit 10 requests per 60 seconds**

        `GET /v1/client/key_info`

        Retrieves all registered orderly keys under the account.
      parameters:
        - name: key_status
          in: query
          description: >-
            Filter by orderly key status. Supported values: `ACTIVE`,
            `REMOVING`, or `REMOVED`.
          required: false
          example: ''
          schema:
            type: string
        - $ref: '#/components/parameters/orderly_timestamp'
        - $ref: '#/components/parameters/orderly_account_id'
        - $ref: '#/components/parameters/orderly_key'
        - $ref: '#/components/parameters/orderly_signature'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KeyInfoResponse'
      deprecated: false
components:
  parameters:
    orderly_timestamp:
      name: orderly-timestamp
      in: header
      description: Timestamp of the signed request in milliseconds.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: '1649920583000'
    orderly_account_id:
      name: orderly-account-id
      in: header
      description: Account ID of the authenticated account.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: 6.858456565150415e+75
    orderly_key:
      name: orderly-key
      in: header
      description: Public orderly key used to sign the request.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
    orderly_signature:
      name: orderly-signature
      in: header
      description: Signature of the request payload generated with the orderly key.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: >-
        dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
  schemas:
    KeyInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      orderly_key:
                        description: orderly key registered under the account.
                        type: string
                        example: ed25519:B4yEc8xMjoqdUiKT5ZT1b2cUy5cggZrbMPvCrqyjkQhf
                      key_status:
                        type: string
                        description: >-
                          Current key status. Supported values are `ACTIVE`,
                          `REMOVING`, and `REMOVED`.
                        example: ACTIVE
                      ip_restriction_list:
                        description: List of IP addresses or ranges allowed to use the key.
                        type: array
                        items:
                          type: string
                      ip_restriction_status:
                        type: string
                        description: >-
                          IP restriction mode for the key. Supported values are
                          `ALLOW_RESTRICTION_LIST`, `ALLOW_ALL_IPS`, and
                          `DISALLOW_ALL_IPS`.
                        example: ALLOW_ALL_IPS
                      expiration:
                        description: >-
                          Expiration timestamp of the orderly key in
                          milliseconds.
                        type: integer
                        example: 1689086651947
                      scope:
                        description: Scopes granted to the orderly key.
                        type: string
                        example: read,trading
                      tag:
                        description: Optional tag associated with the orderly key.
                        type: string
    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

````