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

# Get specified account



## OpenAPI

````yaml get /accounts/{account_id}
openapi: 3.0.0
info:
  title: FinUp Wallet
  description: API Documentation for Finup
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /accounts/{account_id}:
    get:
      tags:
        - Account
      summary: Get specify account by id
      operationId: AccountController_getAccount
      parameters:
        - name: account_id
          required: true
          in: path
          description: Id of account
          schema:
            type: string
        - name: x-api-key
          in: header
          description: API key for authentication
          required: true
          schema:
            type: string
      responses:
        '201':
          description: Resource created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: object
                    properties:
                      id:
                        type: string
                        example: 65ac22cf346d7a2c1fafe2d6
                      name:
                        type: string
                        example: FT I BOGDAN
                      member_id:
                        type: string
                        example: 65fc3211124d7a2c1fafecc1
                      finup_id:
                        type: string
                        example: '1987516235'
                      decline_rate:
                        type: number
                        example: 0
                      fees:
                        type: object
                        properties:
                          deposit_fee:
                            type: number
                            example: 0.03
                          universal_issuing_fee:
                            type: number
                            example: 3
                          universal_decline_fee:
                            type: number
                            example: 0.025
                          transaction_fee:
                            type: number
                            example: 0
                          universal_transaction_fee:
                            type: number
                            example: 0
                          universal_deposit_fee:
                            type: number
                            example: 0
                          universal_withdraw_fee:
                            type: number
                            example: 0
                          platinum_issuing_fee:
                            type: number
                            example: 0
                          platinum_decline_fee:
                            type: number
                            example: 0
                          platinum_transaction_fee:
                            type: number
                            example: 0
                          platinum_deposit_fee:
                            type: number
                            example: 0
                          platinum_withdraw_fee:
                            type: number
                            example: 0
                          platinum_monthly_fee:
                            type: number
                            example: 0
                      wallet_balance:
                        type: number
                        example: 0
                      verification_status:
                        type: string
                        example: Allowed
                      card_balance:
                        type: number
                        example: 5
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 401
                  error_message:
                    type: string
                    example: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 404
                  error_message:
                    type: string
                    example: Account not fot found

````