---
title: "Add a taxonomy node derived from a document selection"
method: POST
path: "/v1/taxonomies/{taxonomy_identifier}/nodes/from-documents"
tags: ["Taxonomies"]
---

# Add a taxonomy node derived from a document selection

`POST /v1/taxonomies/{taxonomy_identifier}/nodes/from-documents`

Add a node to an existing **flat** taxonomy from a document selection.

The node is an ordinary document in the taxonomy's node (source) collection:
its anchor vector is the **centroid of the referenced documents' stored
vectors** and its `label` is `node_label`. Future documents enriched through
this taxonomy are labeled with the nearest node's `label`.

Only stored vectors are read — no re-embedding or GPU work. Documents that
can't contribute (missing, no matching vector) are skipped and reported in
`documents_skipped`; the call fails only when NO document contributes.

Hierarchical taxonomies are not supported here (their nodes are whole
collections) — the error points you to the flat-taxonomy path.

## Path parameters

- `taxonomy_identifier` string, required — Taxonomy ID or name

## Request body

- CreateNodeFromDocumentsRequest — Create a taxonomy node whose classification anchor derives from documents. Mixpeek taxonomy nodes are documents in the taxonomy's source (node) collection: at enrichment time, an incoming document's embedding queries that collection through the taxonomy's retriever and the best-matching node's fields (canonically `label`) are copied onto it. This endpoint computes the CENTROID of the referenced documents' stored vectors and inserts it as a new node document — so future documents whose embeddings land near the referenced selection are classified under `node_label`. No re-embedding or GPU work happens; only stored vectors are read.
  - `node_label` string, required — Label for the new node — the value copied onto documents that classify under it (canonical `label` field).
  - `documents` DocumentRef[], required — Documents whose stored vectors define the node's anchor (centroid). 1-200 refs; for large selections send a sample — the centroid converges quickly.
    - `collection_id` string, required — Collection the document lives in.
    - `document_id` string, required — The document's ID.
  - `node_fields` object, nullable — Optional extra fields stored on the node document (e.g. `description`). Only fields listed in the taxonomy's enrichment_fields are copied during enrichment.
  - `vector_name` string, nullable — Optional explicit vector (index) name for the anchor. If omitted, it is derived from the taxonomy's node collection vector indexes.
  - `provenance` object, nullable — Optional freeform origin context (e.g. cluster_id, run_id, selection type). Stored on the node document under `metadata.promotion` for auditability.

## Response `201`

Successful Response

- TaxonomyNodeFromDocumentsResponse — Result of promoting a document selection to a taxonomy node.
  - `taxonomy_id` string, required
  - `taxonomy_name` string, required
  - `node_document_id` string, required — ID of the created node document (the taxonomy node).
  - `node_collection_id` string, required — The taxonomy's node (source) collection.
  - `node_label` string, required
  - `vector_name` string, required — Vector index name the anchor was stored under.
  - `vector_dimensions` integer, required
  - `documents_used` integer, required — How many referenced documents contributed to the anchor.
  - `documents_skipped` SkippedDocumentRef[]
    - `collection_id` string, nullable
    - `document_id` string, nullable
    - `reason` string, required
  - `taxonomy_created` boolean — True when this call also created the taxonomy (one-gesture mode).
  - `retriever_id` string, nullable — Retriever created for the taxonomy (one-gesture mode only).
  - `enrichment_hint` string, required — Plain-language description of how the new node will be applied to future data.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/mixpeek/apis/mixpeek-api.md) · [All operations](https://skmtc.net/mixpeek/apis/mixpeek-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mixpeek/mixpeek-api/revisions/04b379bdbb7c/schema)
