Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.videobase.com/v1/account \ --header 'X-Api-Key: <api-key>'
const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}}; fetch('https://api.videobase.com/v1/account', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "https://api.videobase.com/v1/account" headers = {"X-Api-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "email": "[email protected]", "balance": "12.45000", "premiumExpire": "2026-12-31 23:59:59", "isPremium": true, "storage": { "total": "Unlimited", "used": 1048576, "left": "Unlimited" } }
{ "message": "File not found", "status": 500 }
Returns the authenticated account, balance, premium status, and storage usage.
Recommended. Your 16-character Videobase API key.
Account details.
Current account balance.
Premium expiry in YYYY-MM-DD HH:mm:ss server time.
YYYY-MM-DD HH:mm:ss
Show child attributes