Clipform

Get form analytics

Returns views, starts, completions, and breakdowns by referrer, country, browser, and device for a single form. Supports date range and dimension filters.

GET
/forms/{formId}/analytics

Authorization

Authorization
Required
Bearer <token>

API key (cf_*) passed as Bearer token

In: header

Path Parameters

formId
Required
string
Format: "uuid"

Query Parameters

start_datestring

Filter from this date (ISO 8601)

Format: "date-time"
end_datestring

Filter until this date (ISO 8601)

Format: "date-time"
referrer_urlstring

Filter by referrer URL

country_codestring

Filter by ISO country code

browserstring

Filter by browser name

device_typestring

Filter by device type (desktop, mobile, tablet)

curl -X GET "https://api.clipform.io/v1/forms/497f6eca-6276-4993-bfeb-53cbbbba6f08/analytics?start_date=2019-08-24T14%3A15%3A22Z&end_date=2019-08-24T14%3A15%3A22Z&referrer_url=string&country_code=string&browser=string&device_type=string" \
  -H "Authorization: Bearer <token>"

Analytics data

{
  "total_views": 0,
  "total_started": 0,
  "total_completed": 0,
  "views_series": [
    {
      "date": "string",
      "value": 0
    }
  ],
  "started_series": [
    {}
  ],
  "completed_series": [
    {}
  ]
}