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

# Get billingplans



## OpenAPI

````yaml /openapi.json get /billing/plans
openapi: 3.1.1
info:
  title: Anima API
  version: 0.1.0
  description: >-
    The Anima API provides programmatic access to unified infrastructure for AI
    agents: create and manage agents; send and receive email; place phone calls
    and send/receive SMS and voice; store and retrieve vault credentials; manage
    agent identity; and configure webhooks for real-time events. Authenticate
    using a Bearer token or an API key passed via the X-API-Key header.
  contact:
    name: Anima Labs
    url: https://useanima.sh
    email: support@useanima.sh
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://api.useanima.sh/v1
    description: Production
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /billing/plans:
    get:
      operationId: billing.getPlans
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  plans:
                    type: array
                    items:
                      type: object
                      properties:
                        tier:
                          enum:
                            - free
                            - starter
                            - growth
                            - enterprise
                          type: string
                          description: >-
                            Publicly-selectable billing tier; sunset 'scale' is
                            excluded
                        name:
                          type: string
                          description: Human-readable name of the tier
                        price:
                          anyOf:
                            - type: integer
                            - type: 'null'
                          description: Monthly price in cents, null for custom-priced tiers
                        priceAnnual:
                          anyOf:
                            - type: integer
                            - type: 'null'
                          description: >-
                            Total charged once a year, in cents. null means the
                            tier has no annual SKU (Free, Enterprise) — render
                            the monthly price and hide the annual option.
                        limits:
                          type: object
                          properties:
                            emails:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Included emails sent per month, null=unlimited
                            smsSent:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Included SMS sent per month, null=unlimited
                            smsReceived:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Included SMS received per month, null=unlimited
                            agents:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Maximum agents, null=unlimited
                            domains:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Maximum custom domains, null=unlimited
                            identities:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Maximum agent identities, null=unlimited
                            phoneNumbers:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Included phone numbers, null=unlimited
                            credentials:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Maximum vault credentials, null=unlimited
                            voiceMinutes:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: Included voice minutes per month, null=unlimited
                            storageBytes:
                              anyOf:
                                - type: integer
                                - type: 'null'
                              description: >-
                                Included object storage in BYTES (not GB),
                                null=unlimited
                          required:
                            - emails
                            - smsSent
                            - smsReceived
                            - agents
                            - domains
                            - identities
                            - phoneNumbers
                            - credentials
                            - voiceMinutes
                            - storageBytes
                          description: >-
                            Included quotas / caps for a tier, projected from
                            the canonical TIERS table
                      required:
                        - tier
                        - name
                        - price
                        - priceAnnual
                        - limits
                    description: Public plan catalog in ascending upgrade order
                required:
                  - plans
                description: >-
                  Canonical tier catalog for the billing comparison grid,
                  derived from TIERS
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT Bearer token obtained from authentication. Pass as: Authorization:
        Bearer <token>
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: 'API key for programmatic access. Pass as: X-API-Key: <your-key>'

````