> ## Documentation Index
> Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User Terms Status

> Get the authenticated user's terms acceptance status



## OpenAPI

````yaml https://gp-auth-module.prod.gnosispay.com/openapi.json get /user/terms
openapi: 3.0.0
info:
  version: 1.0.0
  title: SIWE Authentication API
  description: Sign In With Ethereum authentication service
servers:
  - url: https://gp-auth-module.prod.gnosispay.com
    description: API server
security: []
paths:
  /user/terms:
    get:
      tags:
        - Terms
      summary: Get User Terms Status
      description: Get the authenticated user's terms acceptance status
      responses:
        '200':
          description: User terms status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetUserTermsSuccess'
        '401':
          description: Unauthorized - Invalid or missing JWT
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: User not found or not registered
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '502':
          description: Core API error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - Bearer: []
components:
  schemas:
    GetUserTermsSuccess:
      type: object
      properties:
        terms:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
              currentVersion:
                type: string
              name:
                type: string
              url:
                type: string
                nullable: true
              accepted:
                type: boolean
              acceptedVersion:
                type: string
                nullable: true
              acceptedAt:
                type: string
                nullable: true
                format: date-time
            required:
              - type
              - currentVersion
              - name
              - url
              - accepted
              - acceptedVersion
              - acceptedAt
      required:
        - terms
    Error:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
      required:
        - success
        - error

````