Quickstart

Ship your first live payload in 10 minutes.

Follow these steps to create a project, draft your JSON, publish, and read from the protected live endpoint.

1) Create project and fields

  • Sign up and create your first project.
  • Add fields in the builder (text, number, date, boolean, or list types).
  • Enter values in draft mode and save.

2) Publish your draft snapshot

  • Open your project editor.
  • Use Publish to copy the latest draft into the live snapshot.
  • Keep iterating on draft while live stays stable.

3) Fetch live payload

curl -X GET \
  "https://yourdomain.com/api/live/<project_id>" \
  -H "x-api-key: <your_live_api_key>"

4) Typical response

{
  "headline": "Weekend route sale",
  "startsAt": "2026-05-02",
  "offers": [
    { "route": "SFO-LAX", "price": 79 },
    { "route": "JFK-MIA", "price": 119 }
  ]
}