Skip to main content
GET
Get the sections around this one

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. Encodes the citation's hierarchy: USC_T42_C21_S1983 is Title 42, Chapter 21, Section 1983, the section a lawyer writes as 42 U.S.C. § 1983. Take it from a /statutes/search result rather than assembling it: the title and section are derivable from a citation, but the CHAPTER is not, so hand-built ids usually 404.

Required string length: 3 - 200
Example:

"USC_T42_C21_S1983"

Query Parameters

limit
integer
default:3

How many sections to return on EACH side.

Required range: 1 <= x <= 10
Example:

3

Response

The section plus its neighbours.

Response for GET /statutes/section/{act_id}/related.

section
StatuteResult · object
required

The section you asked about.

previous
StatuteResult · object[]

Sections immediately BEFORE this one in the same container, nearest last.

next
StatuteResult · object[]

Sections immediately AFTER this one, nearest first.

container
string | null

Human label for the grouping the neighbours were drawn from, e.g. the chapter name. Neighbours never cross this boundary.

processingTimeMs
number
default:0

Server-side time for this request in milliseconds, excluding network transit. Useful for spotting a slow query; not billed on.

Example:

240.5

creditsConsumed
number
default:0

Credits actually charged for this call. Read it rather than assuming the list price: failed and refunded work bills 0, and batch endpoints charge per item returned, so a partial result costs less than a full one.

Example:

4

Last modified on August 6, 2026