Skip to main content
GET
/
subscriptions
/
{id}
/
revenue
Get subscription revenue metrics
curl --request GET \
  --url https://api.alguna.io/subscriptions/{id}/revenue \
  --header 'Alguna-Version: <alguna-version>' \
  --header 'Authorization: Bearer <token>'
{
  "acv": "6000.00",
  "arr": "6000.00",
  "currency": "USD",
  "mrr": "500.00",
  "subscription_id": "sub_abc123"
}

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.

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token.

Headers

Alguna-Version
enum<string>
required
Available options:
2026-04-01

Path Parameters

id
string
required

Unique identifier for the subscription

Response

Success

acv
string
required

Annual contract value

Example:

"6000.00"

arr
string
required

Annual recurring revenue

Example:

"6000.00"

currency
string
required

ISO 4217 currency code

Example:

"USD"

mrr
string
required

Monthly recurring revenue

Example:

"500.00"

subscription_id
string
required

Subscription ID

Example:

"sub_abc123"