List subscription plans
GET
/v1/billing/plans
const url = 'https://shareout.site/v1/billing/plans';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://shareout.site/v1/billing/plansResponses
Section titled “ Responses ”Available Pro and Teams plans
Media type application/json
object
plans
Array<object>
object
id
string
name
string
tier
string
interval
string
price_cents
integer
min_seats
integer
Example
{ "plans": [ { "tier": "pro", "interval": "monthly" } ]}