Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.usekinetic.com/llms.txt

Use this file to discover all available pages before exploring further.

API Overview

The Kinetic API lets you programmatically access form submissions, form listings, and analytics. Authenticate with API keys, available on Growth and Pro plans.

Authentication

All requests require a bearer token:
curl -H "Authorization: Bearer kntc_your_api_key" \
  https://app.usekinetic.com/api/v1/external/forms
API keys are created in SettingsDeveloper.

Endpoints

EndpointDescription
GET /api/v1/external/formsList all forms
GET /api/v1/external/forms/:id/submissionsGet submissions for a form
GET /api/v1/external/submissionsGet submissions across all forms
GET /api/v1/external/forms/:id/statsGet form analytics

Response format

All endpoints return:
{
  "data": [...],
  "pagination": { "total": 142, "limit": 50, "offset": 0 },
  "meta": { "request_id": "...", "timestamp": "..." }
}