Developers

A clean contract, by design.

One canonical JSON schema underpins forms, validation and the AI. What you build on won't drift.

Webhooks

Every form can POST a signed JSON payload to your endpoint on each submission, with HMAC verification, retries and a delivery log.

Payload shape

{
  "event": "response.created",
  "form_id": "…",
  "submitted_at": "2026-05-18T10:00:00Z",
  "answers": [
    { "question_id": "email", "value": "ada@example.com" },
    { "question_id": "rating", "value": 9 }
  ]
}

Read API

Generate scoped API keys (Pro) and read forms and responses over REST. Full reference is published here before GA.

Prefilled links

Seed any field — including hidden tracking fields — via query parameters: https://askery.app/f/your-form?email=ada@example.com&ref=docs

Canonical schema

The form schema is a single source of truth (Zod → JSON Schema), the same contract the AI authoring uses. Export is lossless CSV/JSON.

Questions? support@askery.app