Skip to main content
GET
/
plan
/
list
List Plans
curl --request GET \
  --url https://api.example.com/plan/list
Returns Mosaic plan metadata used for pricing and upgrade UX.

Request

curl -X GET "https://api.mosaic.so/plan/list" \
  -H "Authorization: Bearer mk_your_api_key"

Response

{
  "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)"
    }
  ]
}