Public
Documentation Settings

Easy Forms API

The Easy Forms API makes it possible to connect to your form data without using the Easy Forms web site. For example, you will be able to integrate Zapier with Easy Forms to connect form submission data with other services.

This API conforms to REST principles.

If you have any questions beyond the scope of this API, get in touch with our support team and we will be more than happy to help you.

Introduction

To find your API key, navigate to your account page. On your account overview page, under the API section, there's a button that says "Generate API key". Clicking this button will generate an API key for you.

GETAPI key as query parameter

https://demo.easyforms.dev/api/v1/me?api_key=your-api-key

Sending an API key in the query string as part of the URL.

HEADERS
Content-Type

application/json

PARAMS
api_key

your-api-key

Example Request
curl
curl --location 'https://demo.easyforms.dev/api/v1/me?api_key=your-api-key' \
--header 'Content-Type: application/json'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GETAdding a request header

https://demo.easyforms.dev/api/v1/me

Pass the API key into the X-Api-Key header.

HEADERS
X-API-Key

your-api-key

Content-Type

application/json

Example Request
curl
curl --location 'https://demo.easyforms.dev/api/v1/me' \
--header 'X-API-Key: your-api-key' \
--header 'Content-Type: application/json'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

User Account