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

# Get Experiment Quota

> Check experiment usage and limits for your current plan.



## OpenAPI

````yaml get /experiments/api/quota
openapi: 3.1.0
info:
  title: Pictify API
  version: 1.0.0
  description: |
    Generate images, GIFs, and PDFs from HTML templates programmatically.

    ## Authentication
    All API requests require a Bearer token in the Authorization header:
    ```
    Authorization: Bearer pk_live_your_api_key
    ```

    ## Rate Limits
    - Free: 60 requests/minute
    - Pro: 300 requests/minute
    - Business: 1,000 requests/minute

    Rate limit headers are included in all responses.
  contact:
    email: support@pictify.io
    url: https://pictify.io
  license:
    name: MIT
servers:
  - url: https://api.pictify.io
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Images
    description: Image generation endpoints
  - name: GIFs
    description: GIF generation and capture
  - name: PDFs
    description: PDF generation
  - name: Templates
    description: Template management
  - name: Batch
    description: Batch rendering operations
  - name: Experiments
    description: A/B testing, smart links, and scheduled variant experiments
  - name: Webhooks
    description: Webhook subscription management
  - name: Bindings
    description: Data binding for auto-rendering
paths:
  /experiments/api/quota:
    get:
      tags:
        - Experiments
      summary: Get experiment quota
      description: Check experiment usage and limits for your current plan.
      operationId: getExperimentQuota
      responses:
        '200':
          description: Quota information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExperimentQuota'
components:
  schemas:
    ExperimentQuota:
      type: object
      properties:
        plan:
          type: string
          example: standard
        quota:
          type: object
          properties:
            ab_test:
              $ref: '#/components/schemas/QuotaUsage'
            smart_link:
              $ref: '#/components/schemas/QuotaUsage'
            scheduled:
              $ref: '#/components/schemas/QuotaUsage'
        maxVariants:
          type: integer
          example: 5
        analyticsRetentionDays:
          type: integer
          example: 90
    QuotaUsage:
      type: object
      properties:
        used:
          type: integer
          example: 2
        limit:
          type: integer
          nullable: true
          description: null means unlimited
          example: 5
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key obtained from the Pictify dashboard

````