Developer Documentation
Endpoints
Data ingest
Base URL: https://app.kinabase.com/api/v1/
post
collections/{collectionId}/ingest
Ingests timestamped field changes for records in bulk.Parameters
| Name | Location | Type | Description |
|---|---|---|---|
| collectionId * | path | string | Collection ID or Slug |
Request Body
Bulk history import payload
Example request (application/json):
{
"mode": null,
"records": [
{
"id": "example-id",
"changes": [
{
"timestamp": "2026-03-02T09:29:51.293Z",
"data": {
"example-key": {}
}
}
]
}
]
}Response
| Status | Description | Content |
|---|---|---|
| 200 | OK | |
| 400 | Bad Request | |
| 401 | Unauthorized | |
| 404 | Not Found | |
| 429 | Too Many Requests |