> ## 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 rate limit status for a project

> Returns current rate limit usage, tier information, and recent abuse events



## OpenAPI

````yaml /api-reference/openapi.json get /admin/rate-limits/projects/{projectId}
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/projects/{projectId}:
    get:
      tags:
        - Admin - Rate Limits
      summary: Get rate limit status for a project
      description: >-
        Returns current rate limit usage, tier information, and recent abuse
        events
      operationId: AdminRateLimitController_getProjectStatus
      parameters:
        - name: projectId
          required: true
          in: path
          description: Project ID
          schema:
            type: string
      responses:
        '200':
          description: Project rate limit status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectRateLimitStatusDto'
        '404':
          description: Project not found
      security:
        - bearer: []
components:
  schemas:
    ProjectRateLimitStatusDto:
      type: object
      properties:
        projectId:
          type: string
          description: Project ID
        projectName:
          type: string
          description: Project name
        tier:
          type: string
          description: Current tier
          enum:
            - FREE
            - STARTER
            - PROFESSIONAL
            - BUSINESS
            - ENTERPRISE
        apiUsage:
          description: API rate limit usage
          allOf:
            - $ref: '#/components/schemas/RateLimitUsageDto'
        eventUsage:
          description: Event rate limit usage
          allOf:
            - $ref: '#/components/schemas/RateLimitUsageDto'
        recentAbuse:
          description: Recent abuse events
          type: array
          items:
            type: object
      required:
        - projectId
        - projectName
        - tier
        - apiUsage
        - eventUsage
        - recentAbuse
    RateLimitUsageDto:
      type: object
      properties:
        current:
          type: number
          description: Current usage count
        limit:
          type: number
          description: Maximum allowed in window
        remaining:
          type: number
          description: Remaining requests
        window:
          type: number
          description: Window duration in seconds
        resetAt:
          type: number
          description: Unix timestamp when limit resets
        usagePercent:
          type: number
          description: Usage percentage (0-1)
      required:
        - current
        - limit
        - remaining
        - window
        - resetAt
        - usagePercent

````