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

# List subscription plans

> Returns all available subscription plans.



## OpenAPI

````yaml https://api.surnex.io/openapi.json get /v1/plans
openapi: 3.1.0
info:
  title: Surnex API
  description: |-
    Surnex SEO Platform API — api.surnex.io

    Provides the complete backend for the Surnex SEO dashboard including:
    - Multi-tenant organization management
    - Project tracking (domains)
    - Keyword rank tracking (Phase 1+)
    - Backlink analysis (Phase 3+)
    - Site auditing (Phase 4+)
    - Stripe billing integration
    - MCP endpoint for AI agents at /mcp
  version: 0.1.0
servers: []
security: []
paths:
  /v1/plans:
    get:
      tags:
        - Billing
      summary: List subscription plans
      description: Returns all available subscription plans.
      operationId: list_plans_v1_plans_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponse_list_PlanResponse__'
components:
  schemas:
    APIResponse_list_PlanResponse__:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        data:
          anyOf:
            - items:
                $ref: '#/components/schemas/PlanResponse'
              type: array
            - type: 'null'
          title: Data
      type: object
      title: APIResponse[list[PlanResponse]]
    PlanResponse:
      properties:
        name:
          type: string
          title: Name
        limits:
          additionalProperties:
            type: integer
          type: object
          title: Limits
      type: object
      required:
        - name
        - limits
      title: PlanResponse
      description: Subscription plan details returned by API endpoints.

````