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

# Get recent abuse detection events

> Returns list of recent abuse detection events across all projects



## OpenAPI

````yaml /api-reference/openapi.json get /admin/rate-limits/abuse
openapi: 3.0.0
info:
  title: EngageFabric API
  description: >-
    EngageFabric is a multi-tenant SaaS gamification framework. This API
    provides endpoints for managing players, tracking events, quests,
    adventures, leaderboards, lobbies, and real-time features.
  version: 1.0.0
  contact:
    name: EngageFabric Support
    url: https://engagefabric.com
    email: support@engagefabric.com
  license:
    name: Proprietary
    url: https://engagefabric.com/terms
servers:
  - url: https://api.engagefabric.com
    description: Production
  - url: http://localhost:3000
    description: Development
security: []
tags:
  - name: auth
    description: Authentication endpoints
  - name: tenants
    description: Tenant management
  - name: projects
    description: Project management
  - name: players
    description: Player management and game state
  - name: events
    description: Event ingestion and tracking
  - name: quests
    description: Quest management and progress
  - name: adventures
    description: Adventure/season management
  - name: leaderboards
    description: Leaderboard rankings
  - name: lobbies
    description: Multiplayer lobby management
  - name: chat
    description: Real-time chat
  - name: rules
    description: Rules engine configuration
paths:
  /admin/rate-limits/abuse:
    get:
      tags:
        - Admin - Rate Limits
      summary: Get recent abuse detection events
      description: Returns list of recent abuse detection events across all projects
      operationId: AdminRateLimitController_getAbuseEvents
      parameters: []
      responses:
        '200':
          description: List of abuse events
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AbuseEventDto'
      security:
        - bearer: []
components:
  schemas:
    AbuseEventDto:
      type: object
      properties:
        id:
          type: string
          description: Event ID
        timestamp:
          type: number
          description: Timestamp
        projectId:
          type: string
          description: Project ID
        playerId:
          type: string
          description: Player ID
        eventType:
          type: string
          description: Event type
        abuseType:
          type: string
          description: Abuse type
        count:
          type: number
          description: Event count
        threshold:
          type: number
          description: Threshold exceeded
        confidence:
          type: number
          description: Confidence score (0-1)
        suggestedAction:
          type: string
          description: Suggested action
        actionTaken:
          type: string
          description: Action taken
      required:
        - id
        - timestamp
        - projectId
        - playerId
        - eventType
        - abuseType
        - count
        - threshold
        - confidence
        - suggestedAction
        - actionTaken

````