Customer panel
API
Your account workspace
Your API key
Generate a key to connect your reseller panel. Copy a new key now; it is shown only once.
API documentation
Send a POST request to https://youtubeviewspanel.com/api/v2.
Accepts form data (application/x-www-form-urlencoded) or JSON. Every request requires key and action. Responses are JSON. Prices and balances are in USD.
| Action | Parameters | Response |
|---|---|---|
| services | key, action=services | Service IDs, rates per 1,000, limits and categories |
| balance | key, action=balance | balance, currency |
| add | key, action=add, service, link, quantity; optional request_key | order (order ID) |
| status | key, action=status, order | status, charge, start_count, remains, currency |
| Multiple statuses | key, action=status, orders (comma-separated, up to 100) | Status objects keyed by order ID |
The link parameter accepts a URL or username (with or without @). Use the format required by the selected service. For safe order retries, include the same request_key (8–100 letters, numbers, underscores or hyphens). A new key creates a new order. Only orders belonging to your account can be queried.
curl -X POST https://youtubeviewspanel.com/api/v2 \
--data-urlencode "key=YOUR_API_KEY" \
--data-urlencode "action=balance"
# Example response
{"balance":"25.00","currency":"USD"}Errors return an error message. Keep your key private; it can spend your account balance. Refill and cancellation are not available through this API.