Platform
List plans
List the available platform plans, their limits, features, and pricing.
GET /tmr/plans
Returns an array of plan objects, one per tier — lite, basic, pro, and business, in that order. Each object describes the plan's limits, included features, base pricing, and add-on pricing.
Authentication: Bearer token · Permission:
platform:read · Rate limit: default (120 / 60s)Request
curl https://api.twominutereports.com/v1/tmr/plans \
-H "Authorization: Bearer tmrc_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Response
The example below shows a single plan object (lite) in full. The data array contains one such object for every tier.
{
"success": true,
"data": [
{
"name": "Lite",
"key": "lite",
"limits": { "users": 1, "accountsPerConnector": 2 },
"features": [
"1 Users",
"2 Accounts per connector",
"Daily, Weekly, Monthly Schedule frequency"
],
"pricing": {
"usd": { "monthly": 1500, "yearly": 10800 },
"inr": { "monthly": 125900, "yearly": 899900 },
"eur": { "monthly": 1300, "yearly": 9600 }
},
"addons": {
"users": {
"usd": { "monthly": 1000, "yearly": 10000 },
"inr": { "monthly": 70000, "yearly": 700000 },
"eur": { "monthly": 900, "yearly": 8400 }
},
"connections": {
"usd": { "monthly": 1000, "yearly": 10000 },
"inr": { "monthly": 80000, "yearly": 930000 },
"eur": { "monthly": 900, "yearly": 8400 }
},
"destinations": {
"gs": {
"usd": { "monthly": 500, "yearly": 3600 },
"inr": { "monthly": 42900, "yearly": 310800 },
"eur": { "monthly": 400, "yearly": 3600 }
},
"gds": {
"usd": { "monthly": 500, "yearly": 3600 },
"inr": { "monthly": 42900, "yearly": 310800 },
"eur": { "monthly": 400, "yearly": 3600 }
}
}
}
}
]
}
{
"success": false,
"error": { "code": "UNAUTHORIZED", "message": "Authentication required" }
}
Pricing values are integers in the currency's minor units (for USD and EUR, cents) —
1500 is $15.00. INR amounts follow the same convention (125900 is ₹1,259.00).The plan object
name
string
Human-friendly plan name (e.g.
Lite, Basic, Pro, Business).key
string
Stable machine-readable plan identifier. One of
lite, basic, pro, business.limits.users
number
Number of users included in the plan.
limits.accountsPerConnector
number
Number of connected accounts allowed per connector.
features
string[]
Bullet-point list of the plan's headline features, suitable for display on a pricing page.
pricing
object
Base subscription price, keyed by currency. Contains
usd, inr, and eur, each with monthly and yearly amounts (in minor units).addons
object
Add-on pricing. Contains
users, connections, and destinations. Each add-on is keyed by currency (usd, inr, eur) with monthly and yearly amounts.addons.destinations
object
Per-destination add-on pricing, keyed by destination —
gs (Google Sheets) and gds (Looker Studio / Google Data Studio). Each destination holds the per-currency monthly/yearly amounts.