Documentation

Predictable API primitives for verification and monitoring.

Continuum is designed to feel familiar to developer infrastructure teams: simple auth, clean payloads, and durable webhook events.

curl example

curl -X POST https://api.continuum.dev/v1/verify \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email":"alex@company.com"}'

JSON response

{
  "email": "alex@company.com",
  "status": "deliverable",
  "confidence": 0.94,
  "monitoring": {
    "state": "stable",
    "next_check_at": "2026-05-22T10:00:00Z"
  }
}

What's covered

  • Authentication and API key handling.
  • Single verification endpoints and bulk jobs.
  • Monitoring events, webhook delivery, and error semantics.

Authentication

Bearer token auth with clear account-scoped request semantics.

Verify API

Structured decisions, reasons, and confidence in a single response model.

Webhooks

Event delivery for monitoring changes, sync pipelines, and automated actions.