## Retrieve Record Counts **get** `/v1/taxonomy/runs/{run_id}/record-counts` Returns the feedback-record count for every visible node in a taxonomy run. Each count is a subtree total, so a topic (branch) reports the sum of its subtopics and the root reports the run total. Tenant-scoped; returns 404 if the run does not belong to the tenant. ### Path Parameters - `run_id: string` ### Query Parameters - `tenant_id: string` Tenant that owns the run. ### Returns - `counts: array of object { node_id, record_count }` Per-node feedback-record counts, one entry per visible node. - `node_id: string` Taxonomy node ID. - `record_count: number` Number of feedback records in the node's subtree. ### Example ```http curl http://localhost:8080/v1/taxonomy/runs/$RUN_ID/record-counts \ -H "Authorization: Bearer $HUB_API_KEY" ```