HTTP API
Here’s how you can use the Dawn API directly, without an SDK
Base URL
Authentication
All API requests must include your SDK write key in the Authorization
header:
You can get your api key by logging in to app.dawnai.com (bottom of the tab bar!)
Endpoints
Track Event
Track any event, including AI interactions and normal analytics events.
POST /events/track
Request Body
(Must be provided as an array of objects)
Field | Type | Description |
---|---|---|
user_id | string | The unique identifier of the user |
event | string | The name of the event you want to track |
properties | object | (Optional) Additional properties associated with the event. To include image attachments that get rendered in chat, add it as a property like attachments : [{url: "link_to_image"}] |
ai_data | object | (Optional) Object containing AI-specific data for AI events. If provided, either input or output (or both) is required. |
ai_data.model | string | (Optional) The name of the AI model used |
ai_data.input | string | (Optional) The input provided by the user. IF |
ai_data.output | string | (Optional) The output generated by the AI |
ai_data.convo_id | string | (Optional) The conversation ID associated with the interaction |
Example Request - AI Interaction
Example Request - Normal Event
Response
All authorized requests will return a 204 Success
status code. For debugging failures, contact us: founders@dawnai.com
Event has a limit of 1 MB. Properties will be truncated for larger events.
Track Signal
Track user signals such as thumbs up, thumbs down, output schema failures, edits, regenerations, and other objective signals. Each signal must be associated with an event_id
for an event that was sent to Dawn with the /events/track
endpoint.
POST /signals/track
Request Body
(Must be provided as an array of objects)
Field | Type | Description |
---|---|---|
event_id | string | A unique identifier for the signal event |
signal_name | string | The name of the signal (e.g., “thumbs_up”, “thumbs_down”) |
timestamp | string | (Optional) ISO timestamp when the signal occurred |
properties | object | (Optional) Additional properties associated with the signal |
attachment_id | string | (Optional) Reference to a previously sent attachment |
signal_type | string | (Optional) Type of signal: “default”, “feedback”, “edit”, or “standard” |
Example Request
Response
All authorized requests will return a 204 Success
status code. For debugging failures, contact us: founders@dawnai.com
Identify User
Associate traits with a user.
POST /users/identify
Request Body
Field | Type | Description |
---|---|---|
user_id | string | The unique identifier of the user |
traits | object | The traits associated with the user |
Example Request
Response
All authorized requests will return a 204 Success
status code. For debugging failures, contact us: founders@dawnai.com