Skip to main content
GET
/
api
/
v1
/
forms
/
{form_token}
/
entries
List entries of a form
curl --request GET \
  --url https://formhug.ai/api/v1/forms/{form_token}/entries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "serial_number": 42,
      "token": "aB2cD9eF",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "total": 123,
    "next_cursor": "NQ=="
  }
}

Documentation Index

Fetch the complete documentation index at: https://formhug.ai/docs/llms.txt

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

Authorizations

Authorization
string
header
required

Personal Access Token prefixed with fh_. Sent as Authorization: Bearer fh_xxx. The scope required by each endpoint is listed in that endpoint's description.

Path Parameters

form_token
string
required

Form token

Query Parameters

limit
integer
default:20

Page size (1..100, default 20)

Required range: x <= 100
cursor
string

Pagination cursor returned in the previous response as pagination.next_cursor

Response

Success

data
object[]
required
pagination
object
required
Last modified on May 21, 2026