List Record Sets
List record sets in the Talonic value plane with cursor pagination. Filter by layer (capture, structured, resolved, product) or by source kind.
A record set is a table-like collection of records at one layer of the Talonic value plane, the storage model that holds structured data produced by the pipeline. The value plane organizes data into four layers: capture (raw OCR output), structured (extracted field values), resolved (normalized canonical values), and product (final assembled output). Within a set, data follows the ladder Document → Record → Cell → Claim: each record maps to a source document, each cell holds one field value, and claims trace a value back to its evidence. This endpoint lists the record sets in your workspace with cursor-based pagination.
Filter by layer to find sets at a specific pipeline stage, or by kind to locate sets from a particular origin, such as structuring_run, resolution_run, or data_product. Each entry carries lifecycle metadata (name, layer, kind, status, record and field counts) plus links to the detail, fields, records, and export endpoints. Cell values themselves are read through the records endpoint, not this list.
/v1/record-setsQuery parameters
20descResponse
Response fields
curl
Response
{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Resolution Run 2024-10-15",
"layer": "resolved",
"kind": "resolution_run",
"source_id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
"status": "active",
"record_count": 142,
"field_count": 12,
"created_at": "2024-10-15T11:30:00.000Z",
"links": {
"self": "/v1/record-sets/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"fields": "/v1/record-sets/a1b2c3d4-e5f6-7890-abcd-ef1234567890/fields",
"records": "/v1/record-sets/a1b2c3d4-e5f6-7890-abcd-ef1234567890/records",
"export": "/v1/record-sets/a1b2c3d4-e5f6-7890-abcd-ef1234567890/export"
}
}
],
"pagination": {
"total": 8,
"limit": 10,
"has_more": false,
"next_cursor": null
}
}Errors
Error responses