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

# Get Maximum RPS for an Organization

> Retrieves the maximum requests per second (RPS) for a given organization within a specified interval, limited to a maximum of 30 minutes.



## OpenAPI

````yaml GET /usage/max-rps
openapi: 3.0.1
info:
  title: Risk Score API
  description: API definition for Webacy Risk Scores
  version: 1.2.0
servers:
  - url: https://api.webacy.com
    description: Webacy Risk Score API (Production)
  - url: https://api-development.webacy.com
    description: Webacy Risk Score API (Development)
  - url: http://0.0.0.0:3030/api/v1/risk-score
    description: Webacy Risk Score API - Local
security:
  - api_key: []
tags:
  - name: Threat Risks
    description: Analyze addresses for security threats and malicious activity
  - name: Sanction Checks
    description: Check addresses against OFAC and other sanction lists
  - name: Approval Risks
    description: Analyze token approvals and associated risks
  - name: Transaction Risks
    description: Assess risk details for blockchain transactions
  - name: Exposure Risk
    description: Understand risk profile and exposure of addresses
  - name: Contract Risk
    description: Real-time smart contract security analysis
  - name: URL Risks
    description: Analyze URLs for phishing and security threats
  - name: API Usage
    description: Monitor and manage API consumption
  - name: Holder Analysis
    description: Token holder distribution and sniper detection
  - name: Address Poisoning
    description: Detect address poisoning attack patterns
  - name: Token Analysis
    description: Comprehensive token security and market analysis
  - name: Pool Analysis
    description: Liquidity pool data and analysis
  - name: Transaction Scanning
    description: Scan and simulate transactions for risks
  - name: trading-lite
    description: Lightweight trading risk assessment
  - name: RWA & Pegged Tokens
    description: >-
      Real-world asset and pegged-token analytics (supply flows, mint/burn
      velocity)
  - name: Vault Risk v3
    description: >-
      Webacy-native v3 vault risk surface — composite grade, categories,
      coverage, and the framework taxonomy (RFC-019).
  - name: RWA Risk v3
    description: >-
      Webacy-native v3 RWA / stablecoin risk surface — composite grade,
      structural-health criteria, and batch (RFC-019).
paths:
  /usage/max-rps:
    get:
      tags:
        - API Usage
      summary: Get maximum RPS for an organization
      description: >-
        Retrieves the maximum requests per second (RPS) for a given organization
        within a specified interval, limited to a maximum of 30 minutes.
      operationId: getMaxRps
      parameters:
        - name: organization
          in: query
          required: true
          description: The name of the organization to filter logs by.
          schema:
            type: string
        - name: from
          in: query
          required: true
          description: >-
            The start date of the interval to query logs (timestamp in
            milliseconds).
          schema:
            type: integer
            format: int64
        - name: to
          in: query
          required: true
          description: >-
            The end date of the interval to query logs (timestamp in
            milliseconds).
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: number
                nullable: true
        '400':
          description: Bad Request
          content:
            application/json:
              examples:
                intervalTooLong:
                  summary: Interval too long
                  value:
                    message: The interval should not be more than 30 minutes.
                endDateInFuture:
                  summary: End date in future
                  value:
                    message: The end date should be in the past.
                startDateAfterEndDate:
                  summary: Start date after end date
                  value:
                    message: The start date should be before the end date.
        '404':
          description: Organization name not found
          content:
            application/json:
              example:
                message: Organization name not found
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````