Skip to main content
GET
/
v0
/
revenue_overview
Get revenue and transaction volume time-series
curl --request GET \
  --url https://api.formo.so/v0/revenue_overview \
  --header 'Authorization: Bearer <token>'
{
  "meta": [
    {
      "name": "date",
      "type": "Date"
    },
    {
      "name": "project_id",
      "type": "String"
    },
    {
      "name": "revenue",
      "type": "Float32"
    },
    {
      "name": "volume",
      "type": "Float32"
    }
  ],
  "data": [
    {
      "date": "2025-10-15",
      "project_id": "proj_abc",
      "revenue": 1284.55,
      "volume": 412800
    },
    {
      "date": "2025-10-16",
      "project_id": "proj_abc",
      "revenue": 1567.2,
      "volume": 506100
    },
    {
      "date": "2025-10-17",
      "project_id": "proj_abc",
      "revenue": 1893.75,
      "volume": 612400
    }
  ],
  "rows": 3,
  "rows_before_limit_at_least": 3
}
Returns combined revenue and transaction-volume series for the selected window. Use group_by and rank_by to break the chart down by another dimension, and include_previous_period=true for week-over-week comparison.

Authorizations

Authorization
string
header
required

Workspace API key (e.g. formo_xxx). Create one in the Formo dashboard under Team Settings > API Keys.

Query Parameters

date_from
string<date>

Inclusive start date (YYYY-MM-DD). Defaults to 7 days before date_to.

date_to
string<date>

Inclusive end date (YYYY-MM-DD). Defaults to today.

group_by
string
limit
integer
rank_by
string
include_previous_period
boolean

Return current and previous period for WoW comparison

Response

Revenue and volume time-series

Raw Tinybird pipe response. The data array contains the analytics rows; the exact row shape depends on the endpoint.

data
object[]
meta
object[]
rows
integer
rows_before_limit_at_least
integer
statistics
object