Skip to main content

Responses API

Fetch responses submitted to your forms.

List Responses

curl https://www.zevform.com/api/v1/forms/form_abc123/responses \
  -H "Authorization: Bearer zev_your_api_key"

Query Parameters

ParameterTypeDefaultDescription
limitnumber100Results per page (max: 100)
offsetnumber0Number of results to skip

Response

{
  "data": [
    {
      "id": "resp_001",
      "data": {
        "q1": "John Doe",
        "q2": "john@example.com",
        "q3": 5
      },
      "created_at": "2026-03-27T10:30:00Z",
      "updated_at": "2026-03-27T10:30:00Z"
    }
  ],
  "meta": {
    "total": 42,
    "limit": 100,
    "offset": 0
  }

Response Fields

FieldDescription
idUnique response identifier
dataObject mapping question IDs to answer values
created_atISO 8601 timestamp when the response was created
updated_atISO 8601 timestamp of last update