API

The Denorly API

Receive and manage your form submissions from your code. Here's the essentials; the full reference lives in the developer docs.

Base URL

https://denorly.com/api/v1

Authentication

Use your API key as a Bearer token in the Authorization header.

Authorization: Bearer TU_API_KEY

Submit a form

Post the data to your public endpoint using the form's token.

curl -X POST https://denorly.com/api/v1/f/TU_TOKEN \
  -H "Content-Type: application/json" \
  -d '{"email":"cliente@correo.com","mensaje":"Hola"}'