What are Extraction Categories?
Extractions is the Bolna feature that automatically captures structured data from call transcripts after every call. A category is a named set of dispositions evaluated together in a single LLM pass — one category means one LLM call per conversation. Each disposition is a single question inside its category.model used for its pass: every disposition in the category is evaluated by the category’s model in one call. A category belongs to the agent it was created for, and that agent runs every disposition the category holds.
Endpoints
category_id (preferred) or a category name on create or update — at most one of the two per payload. A category name that does not match one of the agent’s categories creates a fresh category.
Category Object
Supported Models
A category’smodel must be one of:
gpt-4.1-minigpt-4.1-nanogpt-4o-minigpt-5-minigpt-5-nanogpt-5.4-minigpt-5.6-lunagemini-3.5-flashgemini-3.5-flash-lite
422 error. A category created implicitly by a category name on a disposition takes that disposition’s model, falling back to gpt-4.1-mini.
Lifecycle Rules
- Move a disposition between categories: update the disposition with the new
category_id(see Update Disposition). There is no separate move endpoint. - Renaming a category rewrites the
categorylabel on all of its dispositions in the same transaction, so extraction results stay grouped consistently. - Deleting a category deletes its dispositions. The category owns them. Historical call execution results are not affected.
- Empty categories are removed automatically: when a move or delete removes a category’s last disposition, the category itself is deleted.
- Category names are per agent. Two agents can each have a category named
Sales; these are independent categories. - An update must change something.
PATCHacceptsname,model, or both, but an empty body is rejected with a422error.
For a full walkthrough of the Extractions feature, answer types, output format, and best practices, see the Using Extractions guide.

