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

# List plans

> Returns every subscription tier with prices and resource limits, ordered from cheapest to most expensive. Prices are in USD. -1 means unlimited for limits and custom pricing for prices.



## OpenAPI

````yaml /api-reference/openapi.json get /billing/plans
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /billing/plans:
    get:
      tags:
        - Billing
      summary: List plans
      description: >-
        Returns every subscription tier with prices and resource limits, ordered
        from cheapest to most expensive. Prices are in USD. -1 means unlimited
        for limits and custom pricing for prices.
      responses:
        '200':
          description: Plan catalog
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.BillingPlansResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.BillingPlansResponse:
      type: object
      properties:
        plans:
          type: array
          items:
            $ref: '#/components/schemas/api_endpoints.BillingPlan'
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.BillingPlan:
      type: object
      properties:
        annual_price_usd:
          type: integer
          example: 1044
        limits:
          $ref: '#/components/schemas/api_endpoints.BillingPlanLimits'
        monthly_price_usd:
          type: integer
          example: 109
        name:
          type: string
          example: Full Send
        popular:
          type: boolean
          example: true
        tagline:
          type: string
          example: For growing teams and products
        tier:
          type: string
          example: pro
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
    api_endpoints.BillingPlanLimits:
      type: object
      properties:
        event_retention_days:
          type: integer
          example: 30
        exports_per_month:
          type: integer
          example: 20
        interactions_per_month:
          type: integer
          example: -1
        posts_per_month:
          type: integer
          example: -1
        profiles:
          type: integer
          example: 50
        storage_bytes:
          type: integer
          example: -1
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````