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

# Get Account

> Retrieve account information for a specific wallet address, including smart wallet address and account metadata.



## OpenAPI

````yaml openapi.json get /v1/account
openapi: 3.0.0
info:
  title: Swaps API
  description: The Swaps API documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://swap-api.flux.fun
    description: Production
  - url: http://localhost:3000
    description: Development
security: []
tags: []
paths:
  /v1/account:
    get:
      tags:
        - Account
      summary: Get Account
      description: >-
        Retrieve account information for a specific wallet address, including
        smart wallet address and account metadata.
      operationId: AccountsController_getAccount
      parameters:
        - name: walletAddress
          required: true
          in: query
          description: Wallet address
          schema:
            example: '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb'
            type: string
      responses:
        '200':
          description: ''
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: x-api-key

````