curl --request GET \
--url https://api.example.com/plan/listList available plans, included credits, and top-up rates.
curl --request GET \
--url https://api.example.com/plan/listcurl -X GET "https://api.mosaic.so/plan/list" \
-H "Authorization: Bearer mk_your_api_key"
{
"plans": [
{
"id": "creator",
"billing": "monthly",
"price_usd": 50,
"credits_per_month": 2500,
"top_up_rate_per_100_credits_usd": 2,
"notes": "Best for individuals getting started"
},
{
"id": "creator_annual",
"billing": "annual",
"price_usd": 480,
"credits_per_month": 2500,
"top_up_rate_per_100_credits_usd": 2,
"notes": "Best for individuals getting started (annual)"
},
{
"id": "professional",
"billing": "monthly",
"price_usd": 150,
"credits_per_month": 10000,
"top_up_rate_per_100_credits_usd": 1.6,
"notes": "Best for growing teams and automations"
},
{
"id": "professional_annual",
"billing": "annual",
"price_usd": 1500,
"credits_per_month": 10000,
"top_up_rate_per_100_credits_usd": 1.6,
"notes": "Best for growing teams and automations (annual)"
}
]
}
Was this page helpful?