Get the account plan tier
GET
/v1/account/tier
const url = 'https://shareout.site/v1/account/tier';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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/account/tier \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Plan tier and feature flags
Media type application/json
object
tier
string
features
object
key
additional properties
any
Example
{ "tier": "free"}