Endpoints

Data ingest

Base URL: https://app.kinabase.com/api/v1/


post

collections/{collectionId}/ingest

Ingests timestamped field changes for records in bulk.

Parameters

NameLocationTypeDescription
collectionId *pathstringCollection 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

StatusDescriptionContent
200OK
400Bad Request
401Unauthorized
404Not Found
429Too Many Requests