What You Can Build
Vook exposes a set of composable capabilities that you can mix and match to fit your integration needs. Here’s what’s available out of the box.Automate Workflows
Trigger actions, chain operations, and automate multi-step workflows across your application with a single API call.
Run Custom Logic
Send structured data to Vook and get back processed results — validation, transformation, enrichment, and more.
Receive Webhooks
Subscribe to real-time events and have Vook push updates directly to your server the moment something changes.
Secure Your Data
All requests are authenticated with API keys and transmitted over HTTPS. Your data is never exposed or shared.
How It Works
Vook is a standard REST API. Every interaction follows the same pattern: you send an HTTP request with your API key in theAuthorization header, and Vook returns a JSON response.
Base URL
All API requests are made to:
Authorization header of every request:
Content-Type: application/json) and all responses return JSON. HTTP status codes follow standard conventions — 200 for success, 4xx for client errors, 5xx for server errors.
Versioning
The current version of the API is v1. Include the version in your request path:
Vook uses versioned URLs so that breaking changes never affect your existing integration. When a new version is released, your
v1 requests will continue to work without modification.Next Steps
Now that you know what Vook can do, here’s where to go next.Quickstart
Follow the step-by-step guide and make your first API call in under 5 minutes.
Authentication
Learn how to generate your API key and pass it correctly in your requests.