> ## 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.

# Get resource usage for the current billing period

> Returns brands, posts, and interactions consumed during the current billing period alongside the plan limits. -1 means unlimited (all paid plans). Period boundaries come from Stripe subscription or rolling 30-day windows for free users.



## OpenAPI

````yaml /api-reference/openapi.json get /usage
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:
  /usage:
    get:
      tags:
        - Usage
      summary: Get resource usage for the current billing period
      description: >-
        Returns brands, posts, and interactions consumed during the current
        billing period alongside the plan limits. -1 means unlimited (all paid
        plans). Period boundaries come from Stripe subscription or rolling
        30-day windows for free users.
      responses:
        '200':
          description: Resource usage for the current billing period
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.UsageResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.UsageResponse:
      type: object
      properties:
        brands_limit:
          type: integer
          example: 10
        brands_used:
          type: integer
          example: 3
        interactions_limit:
          type: integer
          example: 5000
        interactions_used:
          type: integer
          example: 1200
        page_allowance:
          type: integer
          example: 5
        page_billing_exempt:
          type: boolean
          example: false
        period_end:
          type: string
          example: '2026-03-15T00:00:00Z'
        period_start:
          type: string
          example: '2026-02-15T00:00:00Z'
        posts_limit:
          type: integer
          example: 200
        posts_used:
          type: integer
          example: 42
        profile_units_limit:
          type: integer
          example: 10
        profile_units_used:
          type: integer
          example: 4
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````