> ## 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 Orderly key

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

`GET /v1/get_orderly_key`

Check the validity of an Orderly access key attached to the account.




## OpenAPI

````yaml orderly.openapi get /v1/get_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/get_orderly_key:
    get:
      tags:
        - public
      summary: Get Orderly key
      description: |
        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/get_orderly_key`

        Check the validity of an Orderly access key attached to the account.
      parameters:
        - name: account_id
          in: query
          description: The account id of the user.
          required: true
          example: ''
          schema:
            type: string
        - name: orderly_key
          in: query
          description: The public key of the Orderly access key.
          required: true
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrderlyKeyResponse'
      deprecated: false
components:
  schemas:
    GetOrderlyKeyResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - expiration
                - orderly_key
                - scope
              properties:
                orderly_key:
                  description: orderly key associated with the account.
                  type: string
                  example: ed25519:7tEoJo5hMBKBrQsqmc8yw1xNfoQCFQBVwQT1eFafRNRf
                scope:
                  description: Scopes granted to the orderly key.
                  type: string
                  example: read,trading
                expiration:
                  description: Expiration timestamp of the orderly key in milliseconds.
                  type: integer
                  example: 1689086651947
                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

````