Developer Documentation
Endpoints
Telemetry
Base URL: https://app.kinabase.com/api/v1/
post
collections/{collectionId}/ingest
Ingest telemetry samples in bulk for a collection's tracked fields.Parameters
| Name | Location | Type | Description |
|---|---|---|---|
| collectionId * | path | string | Collection ID or Slug |
Request Body
Bulk telemetry ingest payload
Example request (application/json):
{
"records": [
{
"id": "example-id",
"changes": [
{
"timestamp": "2026-04-24T16:28:11.946Z",
"data": {
"example-key": {}
}
}
]
}
]
}Response
| Status | Description | Content |
|---|---|---|
| 200 | OK | |
| 400 | Bad Request | |
| 401 | Unauthorized | |
| 404 | Not Found | |
| 429 | Too Many Requests |