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

# Get pricing



## OpenAPI

````yaml /openapi/spec.json get /v1/pricing
openapi: 3.0.0
info:
  title: VidJutsu API
  version: 2026-05-24-2
servers:
  - url: https://api.vidjutsu.ai
    description: Production
    variables: {}
security:
  - BearerAuth: []
tags:
  - name: Assets
  - name: Editor Projects
  - name: Scrape
  - name: Billing
  - name: API Keys
  - name: Usage
  - name: Info
  - name: Pricing
  - name: Subscriptions
  - name: Auth
  - name: Accounts
  - name: Posts
  - name: References
  - name: Upload
  - name: Watch
  - name: Extract
  - name: Transcribe
  - name: Check
  - name: Compliance
  - name: Overlay
  - name: Disclaimer
  - name: Agent
paths:
  /v1/pricing:
    get:
      tags:
        - Pricing
      summary: Get pricing
      operationId: getPricing
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PricingResponse'
components:
  schemas:
    PricingResponse:
      type: object
      required:
        - subscription
        - maxAccounts
        - dailyLimits
      properties:
        subscription:
          $ref: '#/components/schemas/SubscriptionInfo'
        maxAccounts:
          type: integer
          format: int32
          description: Maximum managed accounts per subscription.
        dailyLimits:
          allOf:
            - $ref: '#/components/schemas/DailyLimits'
          description: Per-endpoint daily request limits (fixed window, resets 00:00 UTC).
    SubscriptionInfo:
      type: object
      required:
        - price
        - required
      properties:
        price:
          type: string
          description: Flat subscription price, e.g. "$99/mo".
        required:
          type: boolean
          description: Whether an active subscription is required for gated endpoints.
    DailyLimits:
      type: object
      additionalProperties:
        type: integer
        format: int32
      description: >-
        Per-endpoint daily request limits, keyed by endpoint name (fixed window,
        resets 00:00 UTC).
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````