Subscribe to release notifications at https://app.vook.ai to get notified as soon as new updates are published.
v1.1.0 — January 2025
New Features- Webhook signature verification — All webhook payloads are now signed with an HMAC-SHA256 signature sent in the
X-Vook-Signatureheader. Use this signature to verify that incoming webhook events genuinely originate from Vook before processing them. - Idempotency keys for POST requests — You can now pass an
Idempotency-Keyheader on anyPOSTrequest to safely retry without accidentally creating duplicate resources. The same response is returned for any subsequent request that uses the same key.
- Rate limit headers on all responses — The
X-RateLimit-Limit,X-RateLimit-Remaining, andX-RateLimit-Resetheaders are now included on every response, not just those that trigger rate limit errors. You can use these values to monitor your usage proactively.
- Pagination
has_morefield — Fixed an issue wherehas_morein paginated list responses was incorrectly returningtruewhen the current page was the last page. It now correctly returnsfalsewhen there are no further results.
v1.0.1 — December 2024
Bug Fixes- 422 validation error details —
422 Unprocessable Entityresponses now include adetailsarray that lists each invalid field along with a human-readable message describing the validation failure. This makes it easier to surface precise error information to your users. X-Request-IDin error responses — Fixed an issue where theX-Request-IDheader was missing from certain error responses. The header is now always present on every response, including all4xxand5xxerrors.
v1.0.0 — November 2024
Initial Public Release We’re excited to launch the Vook API. Here’s what’s included in this first release:- REST API with JSON responses — A clean, resource-oriented REST API that returns consistent JSON across all endpoints.
- API key authentication — Secure every request with API keys using the standard
Authorization: Bearerscheme. Manage your keys from the dashboard. - Pagination support — All list endpoints support cursor-based pagination with
limitandstarting_afterparameters, plus ahas_morefield to easily detect additional pages. - Webhook support — Subscribe to real-time event notifications by registering webhook endpoints in your dashboard.
- Comprehensive error codes — Structured error responses with machine-readable
codefields and human-readablemessagestrings across all endpoints.