Response
Indicates whether the call was successful. 1 if successful.
When an exception occurs, specific exception information will be provided in the message.
Includes specific data.
Your current subscription plan.
Your current subscription status:
If you haven’t cancel your subsciption, the status will be “active”,
If you have cancelled your subcription, the status will be “cancellation upon expiration” before the subscription expired.
If you haven’t cancelled your subscription, this parameter means the countdown days for your plan benefits to be updated.
If you have cancelled your subscription, this parameter means the countdown days for your plan to be downgraded to a free user.
The number of custom voices you created through the website or API.
The maximum number of custom voices you can create with your subscription plan.
The number of TTS characters you have used within your subscription plan.
The maximum number of TTS characters within your subscription plan.
The number of TTS characters you have used without your subscription plan.
The number of TTS characters you have purchased without your subscription plan.
curl --location 'https://api.myvocal.ai/sound_clone/api/v1/user/info' \
--header 'accessKey: xxxx'
{
"code": 1,
"message": "Success",
"data": {
"plan": "Business",
"status": "active",
"resetInDays": 2,
"benefit": {
"usedVoices": 146,
"totalVoices": 150,
"usedMonthlyChars": 3498604,
"totalMonthlyChars": 3500000,
"usedOrderChars": 0,
"totalOrderChars": 0
}
}
}