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.

ActionParametersResponse
serviceskey, action=servicesService IDs, rates per 1,000, limits and categories
balancekey, action=balancebalance, currency
addkey, action=add, service, link, quantity; optional request_keyorder (order ID)
statuskey, action=status, orderstatus, charge, start_count, remains, currency
Multiple statuseskey, 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.