Get Account
Returns the authenticated account, subscription summary, and top-level workspace stats.
/v1/accountRequest
curl -H "Authorization: Bearer mf_your_api_key" \
https://api.musicflowai.com/v1/accountResponse
{
"account": {
"id": "usr_123",
"email": "artist@example.com",
"name": "Artist Name",
"auth_method": "api_key"
},
"subscription": {
"tier": "growth"
},
"stats": {
"channels": 2,
"producers": 3,
"youtubeChannels": 1
}
}