list_statute_divisions
Browse statutory hierarchies one level at a time to list immediate child divisions in legal order, enabling top-to-bottom code enumeration without searching.
Instructions
Walk the statutory tree one level at a time, in statutory order. Each call returns the immediate children of wherever you are, so you can enumerate a code top to bottom without searching.
Cost: 1 credit. Failed lookups are refunded.
Pass the deepest level you already know; the response returns the level below it:
corpusType=USC-> the titlescorpusType=USC&titleNumber=42-> the chapters in Title 42corpusType=USC&titleNumber=42&chapter=21-> the sections in Chapter 21 (leaf)corpusType=CFR&titleNumber=17&part=240-> the sections in Part 240 (leaf)corpusType=STATE&state=tx-> the state's codescorpusType=STATE&state=tx&code=tx_pe-> the chapters in the Texas Penal Code
Interior nodes carry a sectionCount and isLeaf: false; drill into one by
passing its identifier back as the matching filter (chapter, part, or
code). Leaf nodes are sections and carry an actId for
/us/statutes/section/{actId}. Browse supports USC, CFR, STATE, and
REGULATION; other corpora are flatter, so use /us/statutes/search for those.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | No | State code identifier, e.g. `tx_pe` (browse `/us/statutes/divisions` with `corpusType=STATE&state=<code>` to list them). | |
| part | No | Part identifier to drill into (CFR). | |
| state | No | 2-letter jurisdiction code, required for STATE and REGULATION. Case-insensitive. | |
| chapter | No | Chapter identifier to drill into (USC and state codes). | |
| corpusType | Yes | Corpus to browse: USC, CFR, STATE, or REGULATION. | |
| titleNumber | No | USC/CFR title number to drill into. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||