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

# Get Root Account

> Return the Root Account address for the current user



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/user/root-account
openapi: 3.1.0
info:
  title: ekiden-gateway
  description: >-
    API Gateway and WebSocket proxy based on Axum and Utoipa, handling auth,
    rate limiting, and connection buffering.
  license:
    name: ''
  version: 0.1.1
servers:
  - url: https://api.ekiden.fi/
    description: Production
  - url: https://api.staging.ekiden.fi/
    description: Staging
  - url: https://api.dev.ekiden.fi/
    description: Development
  - url: http://localhost:4020/
    description: Local
security: []
paths:
  /api/v1/user/root-account:
    get:
      tags:
        - User
      summary: Get Root Account
      description: Return the Root Account address for the current user
      operationId: get_root_account
      responses:
        '200':
          description: Root Account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRootAccountResponse'
      security:
        - bearer_auth: []
components:
  schemas:
    GetRootAccountResponse:
      type: object
      required:
        - root_addr
      properties:
        root_addr:
          type: string
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer

````