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

# Get Team Limits

> Retrieves plan limits and configuration for the team including row limits, rate limiting status, and subscription details.



## OpenAPI

````yaml /openapi-v0.1.json get /v0.1/team/limits
openapi: 3.0.0
info:
  title: PromptLoop API
  version: 0.1.0
  description: >-
    Run PromptLoop research tasks, manage asynchronous batches, and create
    company-list exports.
  contact:
    name: PromptLoop Support
    email: help@promptloop.com
    url: https://promptloop.com
servers:
  - url: https://api.promptloop.com
    description: Production
security: []
tags:
  - name: Tasks
    description: Create, inspect, test, and run research tasks.
  - name: Batches
    description: Run and manage asynchronous JSONL workloads.
  - name: Company Lists
    description: Search for companies and create downloadable dataset exports.
  - name: Team
    description: Inspect team usage and plan limits.
paths:
  /v0.1/team/limits:
    get:
      tags:
        - Team
      summary: Get Team Limits
      description: >-
        Retrieves plan limits and configuration for the team including row
        limits, rate limiting status, and subscription details.
      operationId: getLimits
      parameters: []
      responses:
        '200':
          description: Successfully retrieved limits data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitsResponseDto'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
      security:
        - x-api-key: []
components:
  schemas:
    LimitsResponseDto:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
            - error
          example: success
        data:
          $ref: '#/components/schemas/LimitsDataDto'
        message:
          type: string
        error:
          allOf:
            - $ref: '#/components/schemas/ErrorDetailsDto'
          nullable: true
        request_id:
          type: string
          description: Correlation identifier for support and request tracing.
      required:
        - status
        - data
        - message
    ErrorResponseDto:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
            - error
          example: error
        data:
          type: object
          nullable: true
        message:
          type: string
        error:
          allOf:
            - $ref: '#/components/schemas/ErrorDetailsDto'
          nullable: true
        request_id:
          type: string
          description: Correlation identifier for support and request tracing.
      required:
        - status
        - data
        - message
    LimitsDataDto:
      type: object
      properties:
        plan:
          type: string
          description: Plan name based on subscription status
          example: Pro
        row_limit:
          type: number
          description: Monthly row limit for the plan
          example: 250
        rate_limited:
          type: boolean
          description: Whether API rate limiting is enabled
          example: true
        subscribed:
          type: boolean
          description: Whether the team has an active subscription
          example: true
        enterprise:
          type: boolean
          description: Whether the team is on an enterprise plan
          example: false
      required:
        - plan
        - row_limit
        - rate_limited
        - subscribed
        - enterprise
    ErrorDetailsDto:
      type: object
      properties:
        code:
          type: number
        details:
          type: string
      required:
        - code
        - details
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````