Skip to main content
GET
/
api
/
v1
/
statutes
/
section
/
{act_id}
Get statute section metadata
curl --request GET \
  --url https://api.vaquill.ai/api/v1/statutes/section/{act_id} \
  --header 'Authorization: Bearer <token>'
{
  "section": {
    "actId": "<string>",
    "citation": "<string>",
    "citationShort": "<string>",
    "title": "<string>",
    "corpusType": "<string>",
    "state": "<string>",
    "year": 123,
    "relevanceScore": 0,
    "excerpt": "",
    "titleNumber": 123,
    "titleName": "<string>",
    "chapter": "<string>",
    "chapterName": "<string>",
    "sectionNumber": "<string>",
    "displayPath": "<string>",
    "breadcrumb": [
      {}
    ],
    "htmlUrl": "<string>",
    "pdfUrl": "<string>",
    "xmlUrl": "<string>",
    "textUrl": "<string>",
    "docxUrl": "<string>",
    "stateHtmlUrl": "<string>",
    "govInfoHtmlUrl": "<string>",
    "govInfoPdfUrl": "<string>",
    "externalUrl": "<string>"
  },
  "processingTimeMs": 0,
  "creditsConsumed": 0
}

Documentation Index

Fetch the complete documentation index at: https://vaquill.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key issued from the Vaquill developer dashboard. Pass as Authorization: Bearer vq_key_...

Path Parameters

act_id
string
required

Section identifier (e.g., 'USC_T42_C21_S1983').

Required string length: 3 - 200
Example:

"USC_T42_C21_S1983"

Response

Successful Response

Detailed section metadata (no full text, use /body for that).

section
StatuteResult · object
required

A single statute section from search results.

processingTimeMs
number
default:0
creditsConsumed
number
default:0