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

# Recupera termini e condizioni

> Recupera i termini e condizioni correnti che l'utente deve accettare.



## OpenAPI

````yaml get /api/v1/terms
openapi: 3.1.0
info:
  title: Aegister API
  version: 1.0.5
servers: []
security: []
paths:
  /api/v1/terms:
    get:
      tags:
        - terms
      description: GET /api/v1/terms — returns current terms version and acceptance status.
      operationId: terms_retrieve
      responses:
        '200':
          description: No response body
      security:
        - ApiKeyAuth: []
        - ApiKeyQueryParam: []
        - {}
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Aegister-Token
    ApiKeyQueryParam:
      type: apiKey
      in: query
      name: X-Aegister-Token

````