reference
API Reference
Browse every endpoint on the WhaleTools Platform API. Grouped by domain with request/response examples.
Authentication
All requests require an API key passed in the x-api-key header. Generate keys from your dashboard under Settings or via the API.
curl
curl https://vm.whaletools.cloud/v1/products \
-H "x-api-key: wk_live_your_key_here"javascript
const res = await fetch(
'https://vm.whaletools.cloud/v1/products',
{ headers: { 'x-api-key': 'wk_live_...' } }
);
const products = await res.json();Live keys:
wk_live_*Test keys: wk_test_*Base URL: https://vm.whaletools.cloudLoading API spec...