API Reference
SDK Libraries
Endpoints
- Text to Speech
- Voice Changer
- Sound Effects
- Audio Isolation
- Text to Voice
- Dubbing
Administration
- History
- Samples
- User
- Voices
- Voice Library
- Projects
- Pronunciation Dictionaries
- Models
- Audio-native
- Workspace
- Usage
Legacy
- Voice Generation (Deprecated)
User
Get User Subscription Info
Gets extended information about the users subscription
GET
/
v1
/
user
/
subscription
Copy
Ask AI
from elevenlabs import ElevenLabs
client = ElevenLabs(
api_key="YOUR_API_KEY",
)
client.user.get_subscription()
Copy
Ask AI
{
"tier": "<string>",
"character_count": 123,
"character_limit": 123,
"can_extend_character_limit": true,
"allowed_to_extend_character_limit": true,
"next_character_count_reset_unix": 123,
"voice_limit": 123,
"max_voice_add_edits": 123,
"voice_add_edit_counter": 123,
"professional_voice_limit": 123,
"can_extend_voice_limit": true,
"can_use_instant_voice_cloning": true,
"can_use_professional_voice_cloning": true,
"currency": "usd",
"status": "trialing",
"billing_period": "monthly_period",
"character_refresh_period": "monthly_period",
"next_invoice": {
"amount_due_cents": 123,
"next_payment_attempt_unix": 123
},
"has_open_invoices": true
}
Headers
Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
Copy
Ask AI
from elevenlabs import ElevenLabs
client = ElevenLabs(
api_key="YOUR_API_KEY",
)
client.user.get_subscription()
Copy
Ask AI
{
"tier": "<string>",
"character_count": 123,
"character_limit": 123,
"can_extend_character_limit": true,
"allowed_to_extend_character_limit": true,
"next_character_count_reset_unix": 123,
"voice_limit": 123,
"max_voice_add_edits": 123,
"voice_add_edit_counter": 123,
"professional_voice_limit": 123,
"can_extend_voice_limit": true,
"can_use_instant_voice_cloning": true,
"can_use_professional_voice_cloning": true,
"currency": "usd",
"status": "trialing",
"billing_period": "monthly_period",
"character_refresh_period": "monthly_period",
"next_invoice": {
"amount_due_cents": 123,
"next_payment_attempt_unix": 123
},
"has_open_invoices": true
}
Assistant
Responses are generated using AI and may contain mistakes.