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

# Get session

> Get the current authenticated session, or null when the caller is not signed in. Served by Better Auth.



## OpenAPI

````yaml /openapi.json get /auth/get-session
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /auth/get-session:
    get:
      tags:
        - Authentication
      summary: Get session
      description: >-
        Get the current authenticated session, or null when the caller is not
        signed in. Served by Better Auth.
      operationId: getSession
      responses:
        '200':
          description: Current session details, or null when unauthenticated
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````