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

# Check if wallet is registered

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

`GET /v1/get_account`

Check whether a wallet has a registered account with the provided builder ID.




## OpenAPI

````yaml orderly.openapi get /v1/get_account
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_account:
    get:
      tags:
        - public
      summary: Check if wallet is registered
      description: >
        **Limit: 10 requests per 1 second per IP address**


        `GET /v1/get_account`


        Check whether a wallet has a registered account with the provided
        builder ID.
      parameters:
        - name: address
          in: query
          description: The address of the user wallet
          required: true
          example: ''
          schema:
            type: string
        - name: broker_id
          in: query
          description: Builder ID to check for the wallet address.
          required: true
          example: ''
          schema:
            type: string
        - name: chain_type
          in: query
          description: '`EVM` or `SOL`'
          required: false
          example: EVM
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAccountResponse'
      deprecated: false
components:
  schemas:
    GetAccountResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - account_id
                - user_id
              properties:
                user_id:
                  description: Internal user ID associated with the wallet and builder.
                  type: integer
                  example: 24
                account_id:
                  description: Account ID associated with the wallet and builder.
                  type: string
                  example: >-
                    0xb129e074a17dfba8d652ae1eca21c7d6bb6904f1aa693f4886d50db170933a46
    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

````