Developers · ReferenceWebb9 API reference.
Authentication, scopes, every v1 endpoint (generated straight from the live OpenAPI spec), idempotency, error codes, and webhook signature verification — everything you need to build against the Webb9 API.
Errors
One envelope, stable machine-readable codes.
{
"error": {
"type": "invalid_request_error",
"code": "invalid_request",
"message": "email must be a valid email address",
"requestId": "3f2a1c9e-..."
}
}
400 invalid_requestMalformed body, bad query params, or a validation failure.
401 unauthorizedMissing, invalid, expired, or revoked credential.
403 insufficient_scopeThe credential is valid but lacks the scope this route needs.
404 not_foundThe resource doesn't exist, or belongs to a different business.
409 conflictAn Idempotency-Key was reused with a different request body, or is still in flight.
429 rate_limitedPer-credential, per-business, or per-IP rate limit exceeded.
Every response — success or error — carries an X-Request-Id header; include it when contacting support about a specific request.