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

# Get app risk profile

> Get detailed compliance profile for a single app



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml get /compliance/app/{id}/risk-profile
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /compliance/app/{id}/risk-profile:
    get:
      tags:
        - Compliance
      summary: Get app risk profile
      description: Get detailed compliance profile for a single app
      parameters:
        - name: id
          in: path
          description: App ID
          required: true
          schema:
            type: integer
        - name: start_date
          in: query
          description: Start date (YYYY-MM-DD), defaults to 7 days ago
          schema:
            type: string
        - name: end_date
          in: query
          description: End date (YYYY-MM-DD), defaults to today
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/compliance.AppRiskProfile'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
components:
  schemas:
    compliance.AppRiskProfile:
      type: object
      properties:
        app_id:
          type: integer
        app_name:
          type: string
        budget_status:
          $ref: '#/components/schemas/compliance.BudgetAlert'
        owner_email:
          type: string
        owner_id:
          type: integer
        recent_violations:
          type: array
          items:
            $ref: '#/components/schemas/compliance.ViolationEvent'
        risk_level:
          type: string
        risk_score:
          type: integer
        summary:
          $ref: '#/components/schemas/compliance.ComplianceSummary'
    models.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
    compliance.BudgetAlert:
      type: object
      properties:
        alert_level:
          type: string
          description: warning (>80%), critical (>95%)
        budget:
          type: number
        entity_id:
          type: integer
        entity_type:
          type: string
          description: App or LLM
        name:
          type: string
        owner_email:
          type: string
        owner_id:
          type: integer
        percentage:
          type: number
        spent:
          type: number
        velocity:
          type: number
          description: Spending rate per day
    compliance.ViolationEvent:
      type: object
      properties:
        details:
          type: string
        response_code:
          type: integer
        timestamp:
          type: string
        type:
          type: string
          description: auth_failure, policy_violation, budget_exceeded, error
    compliance.ComplianceSummary:
      type: object
      properties:
        auth_failures:
          type: integer
        auth_failures_trend:
          type: number
          description: '% change from previous period'
        budget_alerts:
          type: integer
          description: Apps >80% budget
        budget_trend:
          type: number
        error_rate:
          type: number
          description: '% of 5xx errors'
        error_trend:
          type: number
        policy_trend:
          type: number
        policy_violations:
          type: integer
        total_requests:
          type: integer

````