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

# Get net revenue summary

> Returns a net revenue summary including current month, last month, and annualized figures broken down by fixed (recurring) and metered (usage-based) revenue.



## OpenAPI

````yaml /api-reference/v2/specs/2026-04-01.json get /insights/revenue
openapi: 3.1.0
info:
  title: Alguna Public API
  version: '2026-04-01'
servers:
  - url: https://api.alguna.io
security:
  - bearerAuth: []
tags:
  - name: Billing Events and Metrics
  - name: Credit Notes
  - name: Credits
  - name: Customer Portal Sessions
  - name: Customers
  - name: Insights
  - name: Invoices
  - name: Payments
  - name: Plans
  - name: Product Bundles
  - name: Products
  - name: Refunds
  - name: Revenue Schedules
  - name: Subscription Changes
  - name: Subscription Versions
  - name: Subscriptions
  - name: Wallet Grants
  - name: Wallets
paths:
  /insights/revenue:
    get:
      tags:
        - Insights
      summary: Get net revenue summary
      description: >-
        Returns a net revenue summary including current month, last month, and
        annualized figures broken down by fixed (recurring) and metered
        (usage-based) revenue.
      operationId: get-revenue-insights
      parameters:
        - in: header
          name: Alguna-Version
          required: true
          schema:
            enum:
              - '2026-04-01'
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NetRevenueResponse'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not Found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unprocessable Entity
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Server Error
components:
  schemas:
    NetRevenueResponse:
      properties:
        currency:
          description: ISO 4217 currency code
          example: USD
          type: string
        fixed_revenue_last_calendar_month:
          description: Fixed revenue for the previous month
          example: '95000.00'
          type: string
        fixed_revenue_this_calendar_month:
          description: Fixed (recurring) revenue for the current month
          example: '100000.00'
          type: string
        fixed_revenue_this_calendar_month_annualized:
          description: Annualized fixed revenue based on the current month
          example: '1200000.00'
          type: string
        fixed_revenue_twelve_calendar_months_ago_annualized:
          description: Annualized fixed revenue from twelve months ago
          example: '960000.00'
          type: string
        metered_revenue_last_calendar_month:
          description: Metered revenue for the previous month
          example: '23000.00'
          type: string
        metered_revenue_this_calendar_month:
          description: Metered (usage-based) revenue for the current month
          example: '25000.00'
          type: string
        metered_revenue_this_calendar_month_annualized:
          description: Annualized metered revenue based on the current month
          example: '300000.00'
          type: string
        metered_revenue_twelve_calendar_months_ago_annualized:
          description: Annualized metered revenue from twelve months ago
          example: '240000.00'
          type: string
        net_revenue_last_calendar_month:
          description: Net revenue for the previous calendar month
          example: '118000.00'
          type: string
        net_revenue_this_calendar_month:
          description: Net revenue for the current calendar month
          example: '125000.00'
          type: string
        net_revenue_this_calendar_month_annualized:
          description: Annualized net revenue based on the current month
          example: '1500000.00'
          type: string
        net_revenue_twelve_calendar_months_ago_annualized:
          description: Annualized net revenue from twelve months ago for comparison
          example: '1200000.00'
          type: string
      required:
        - currency
        - fixed_revenue_last_calendar_month
        - fixed_revenue_this_calendar_month
        - fixed_revenue_this_calendar_month_annualized
        - fixed_revenue_twelve_calendar_months_ago_annualized
        - metered_revenue_last_calendar_month
        - metered_revenue_this_calendar_month
        - metered_revenue_this_calendar_month_annualized
        - metered_revenue_twelve_calendar_months_ago_annualized
        - net_revenue_last_calendar_month
        - net_revenue_this_calendar_month
        - net_revenue_this_calendar_month_annualized
        - net_revenue_twelve_calendar_months_ago_annualized
      type: object
    ErrorResponse:
      properties:
        detail:
          type: string
        status:
          format: int64
          type: integer
      required:
        - status
        - detail
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: API Key
      description: API key authentication. Pass your API key as a Bearer token.
      scheme: bearer
      type: http

````