Python
from viscribe import Client client = Client(api_key="your-api-key-here") credits = client.get_credits() print(f"Remaining credits: {credits.remaining_credits}") print(f"Total credits used: {credits.total_credits_used}")
{ "remaining_credits": 123, "total_credits_used": 123 }
Get your current credit balance and usage statistics.
API key authentication. Include your API key in the VISCRIBE-APIKEY header.
Successful response
The number of credits currently available in your account.
The total number of credits you have consumed since account creation.