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

# Get Current User Info

> Get current user information from token (placeholder for testing).



## OpenAPI

````yaml get /auth/me
openapi: 3.1.0
info:
  title: Flow API
  description: Content-addressing backend with Git-like versioning
  version: 1.0.0
servers:
  - url: https://api.yertle.com
    description: Production
security: []
paths:
  /auth/me:
    get:
      tags:
        - authentication
      summary: Get Current User Info
      description: Get current user information from token (placeholder for testing).
      operationId: get_current_user_info_auth_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CurrentUserPlaceholderResponse'
components:
  schemas:
    CurrentUserPlaceholderResponse:
      properties:
        message:
          type: string
          title: Message
          description: Human-readable guidance
        hint:
          type: string
          title: Hint
          description: Hint on how to authenticate
      type: object
      required:
        - message
        - hint
      title: CurrentUserPlaceholderResponse
      description: >-
        Placeholder response for GET /auth/me.


        The production endpoint requires a valid bearer token. This shape is
        what

        callers see when hitting the endpoint without authentication.

````