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

# Get terms status

> Returns the currently published Terms & Conditions document plus whether the authenticated user still needs to accept it. `document` is null when no terms have been published. Session auth only.

Returns the currently published Terms & Conditions and whether the authenticated user still needs to accept it. Session auth only.


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/me/terms
openapi: 3.1.0
info:
  title: Omnifence API
  description: >-
    Content moderation API. Clients submit images or videos which pass through a
    classification pipeline and receive a pass/reject decision.
  version: 1.0.0
  contact:
    email: support@omnifence.ai
servers:
  - url: http://localhost:3051
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: System
    description: Health and diagnostics
  - name: Moderation
    description: Submit moderation jobs
  - name: Jobs
    description: Query job status and progress
  - name: Usage
    description: Billing and usage data
  - name: Webhooks
    description: Webhook registration
  - name: Account
    description: Authenticated client account settings
  - name: Billing
    description: Customer-facing billing balance and ledger
  - name: Admin
    description: Platform administration (requires admin:config scope)
paths:
  /api/v1/me/terms:
    get:
      tags:
        - Account
      summary: Get the active Terms & Conditions and my acceptance status
      description: >-
        Returns the currently published Terms & Conditions document plus whether
        the authenticated user still needs to accept it. `document` is null when
        no terms have been published. Session auth only.
      operationId: getMyTermsStatus
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                properties:
                  needs_acceptance:
                    type: boolean
                  document:
                    oneOf:
                      - type: object
                        additionalProperties: false
                        properties:
                          document_id:
                            type: string
                          version:
                            type: integer
                          title:
                            type: string
                          body:
                            type: string
                          require_scroll:
                            type: boolean
                          content_hash:
                            type: string
                          published_at:
                            type:
                              - string
                              - 'null'
                            format: date-time
                        required:
                          - document_id
                          - version
                          - title
                          - body
                          - require_scroll
                          - content_hash
                      - type: 'null'
                required:
                  - needs_acceptance
                  - document
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from the Omnifence dashboard

````