Javascript
import Lmnt from 'lmnt-node'; const client = new Lmnt({ apiKey: 'My API Key', }); const account = await client.accounts.retrieve(); console.log(account.plan);
{ "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 } }
Returns details about your account.
Your API key; get it from your LMNT account page.
OK
The response is of type object.
object
Was this page helpful?