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

# Prices

> Fetches current active subscription plan details along with available pricing options.



## OpenAPI

````yaml GET /fetch-prices/
openapi: 3.1.0
info:
  title: CloserX.ai API
  description: >-
    The CloserX.ai API provides programmatic access to manage AI-powered calling
    operations, including agent creation, campaign management, contact handling,
    telephony integration, and more. This API enables seamless automation and
    integration with CRM systems, telephony providers, and other third-party
    services for enhanced client communication and business operations.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.closerx.ai/api
security:
  - api_key: []
paths:
  /fetch-prices/:
    get:
      summary: Current Plan
      description: >-
        Fetches current active subscription plan details along with available
        pricing options.
      responses:
        '200':
          description: Successfully retrieved pricing and subscription information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FetchPricesResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FetchPricesResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        errors:
          type: array
          items:
            type: string
          example: []
        response:
          type: object
          properties:
            has_subscription:
              type: boolean
              example: true
            active_subscription:
              type: object
              properties:
                plan:
                  type:
                    - string
                    - 'null'
                  example: null
                status:
                  type: string
                  example: active
                next_billing:
                  type: string
                  format: date-time
                  example: '2025-09-14T18:45:46Z'
                amount:
                  type: number
                  format: float
                  example: 97
                features:
                  type: string
                  example: ''
                price_id:
                  type: string
                payment_gateway:
                  type: string
                  example: stripe
            prices:
              type: array
              items:
                type: object
                properties:
                  price_id:
                    type: string
                  amount:
                    type: number
                    format: float
                    example: 297
                  currency:
                    type: string
                    example: usd
                  product_name:
                    type: string
                  description:
                    type:
                      - string
                      - 'null'
                    example: null
                  interval:
                    type: string
                    example: month
        message:
          type: string
          example: All Prices
    Error:
      required:
        - success
        - message
        - data
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key

````