Skip to main content
GET
/
contact-forms
List contact-form submissions
curl --request GET \
  --url https://api.neuraldraft.io/v1/contact-forms \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 17,
      "email": "jane@example.com",
      "subject": "Demo request",
      "message": "<string>",
      "data": {},
      "status": "received",
      "submitted_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 1,
    "page_size": 20,
    "total": 142
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.neuraldraft.io/llms.txt

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

Authorizations

Authorization
string
header
required

Project API key. Pass as Authorization: Bearer ndsk_live_.... Manage keys via /projects/me/api-keys. Test-mode keys use the ndsk_test_ prefix.

Query Parameters

Substring match against email, subject, message.

Maximum string length: 255
page
integer
default:1
Required range: x >= 1
page_size
integer
default:50
Required range: 1 <= x <= 200

Response

Paginated submissions.

data
object[]
meta
object