Link Keys
List all discovered link keys with their classification category and frequency. Link keys are field-level entity identifiers used for document linking.
The linking graph connects documents through shared entity values — an invoice and a contract sharing the same customer ID are linked. The API exposes the bipartite document-entity graph: link keys (field-level entity identifiers), document-level links, the full graph, document-centric subgraphs, classification (identity, transaction, reference), backfill, and document-to-case mapping.
GET
/v1/linking/link-keysResponse
Response fields
dataarrayArray of link key objects.
data[].idstringField registry UUID.
data[].canonical_namestringCanonical field name used as the link key.
data[].display_namestring | nullHuman-readable display name for the field.
data[].data_typestringData type of the field (e.g. string, number, date).
data[].link_key_categorystring | nullLink key category: identity, transaction, or reference.
data[].occurrence_countintegerNumber of documents where this field has been extracted.
Response
{
"data": [
{
"id": "freg_uuid_1",
"canonical_name": "customer_id",
"display_name": "Customer ID",
"data_type": "string",
"link_key_category": "identity",
"occurrence_count": 142
},
{
"id": "freg_uuid_2",
"canonical_name": "invoice_number",
"display_name": "Invoice Number",
"data_type": "string",
"link_key_category": "transaction",
"occurrence_count": 87
}
]
}Errors
Error responses
401unauthorizedMissing or invalid API key.
429rate_limitedToo many requests. Retry after the period indicated in the Retry-After header.