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

X-API-Key
string
header
required

Your API key; get it from your LMNT account page.

Response

200
application/json
OK
plan
object
required
usage
object
required

Was this page helpful?