Account
Account info
Account
Account info
Returns details about your account.
GET
/
v1
/
account
curl --request GET \
--url https://api.lmnt.com/v1/account \
--header 'X-API-Key: <api-key>'
{
"plan": {
"character_limit": 123,
"commercial_use_allowed": true,
"instant_voice_limit": 123,
"professional_voice_limit": 123,
"type": "<string>"
},
"usage": {
"characters": 123,
"instant_voices": 123,
"professional_voices": 123
}
}
Authorizations
Your API key; get it from your LMNT account page.
Response
200
application/json
OK
The number of characters you are allowed to synthesize in this billing period.
The number of professional voices you are allowed to create.
The type of plan you are subscribed to.
The number of instant voices you are allowed to create.
Was this page helpful?
curl --request GET \
--url https://api.lmnt.com/v1/account \
--header 'X-API-Key: <api-key>'
{
"plan": {
"character_limit": 123,
"commercial_use_allowed": true,
"instant_voice_limit": 123,
"professional_voice_limit": 123,
"type": "<string>"
},
"usage": {
"characters": 123,
"instant_voices": 123,
"professional_voices": 123
}
}