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

# Ai Act Readiness

> Get EU AI Act readiness score for an entity.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/compliance/readiness/{entity_id}
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/compliance/readiness/{entity_id}:
    get:
      summary: Ai Act Readiness
      description: Get EU AI Act readiness score for an entity.
      operationId: ai_act_readiness_v1_compliance_readiness__entity_id__get
      parameters:
        - name: entity_id
          in: path
          required: true
          schema:
            type: string
            title: Entity Id
        - name: system_type
          in: query
          required: false
          schema:
            type: string
            description: AI system type (credit_scoring, trust_scoring, etc.)
            default: trust_scoring
            title: System Type
          description: AI system type (credit_scoring, trust_scoring, etc.)
        - name: completed_items
          in: query
          required: false
          schema:
            type: array
            items:
              type: string
            description: Completed readiness checklist items
            default: []
            title: Completed Items
          description: Completed readiness checklist items
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReadinessScore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ReadinessScore:
      properties:
        entity_id:
          type: string
          title: Entity Id
          description: Entity identifier
        system_type:
          type: string
          title: System Type
          description: AI system classification
        risk_level:
          type: string
          title: Risk Level
          description: EU AI Act risk level
        readiness_score:
          type: integer
          maximum: 100
          minimum: 0
          title: Readiness Score
          description: Readiness percentage
        completed_items:
          type: integer
          minimum: 0
          title: Completed Items
        total_items:
          type: integer
          minimum: 0
          title: Total Items
        gaps:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Gaps
          description: Missing requirements
        days_until_enforcement:
          type: integer
          minimum: 0
          title: Days Until Enforcement
        urgency:
          type: string
          title: Urgency
          description: normal, high, or critical
      type: object
      required:
        - entity_id
        - system_type
        - risk_level
        - readiness_score
        - completed_items
        - total_items
        - days_until_enforcement
        - urgency
      title: ReadinessScore
      description: EU AI Act compliance readiness assessment.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````