Skip to main content
GET
Find the sections that cite this one

Authorizations

Authorization
string
header
required

API key issued from the 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 /us/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:25

Maximum citing sections to return.

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

25

Response

The section plus the sections citing it.

Response for GET /us/statutes/section/{act_id}/cited-by.

section
StatuteResult · object
required

The section you asked about.

citers
StatuteResult · object[]

Sections whose text cross-references this one, in statutory order. Empty is a real answer: plenty of sections are cited by nothing.

total
integer
default:0

How many citing sections were returned. This is the size of citers, not a corpus-wide count: it is capped by limit.

Example:

17

truncated
boolean
default:false

True when more citing sections exist than limit allowed. Raise limit to see the rest.

note
string | null

Set only when the answer is not a real zero. Reverse citation is built on the cross-reference index, which exists for USC and CFR; for any other corpus this explains that the section is out of scope and the call is refunded. When it is null, an empty citers means nothing cites this section.

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:

74.2

creditsConsumed
number
default:0

Credits actually charged for this call. Read it rather than assuming the list price: failed and refunded work bills 0.

Example:

2

Last modified on August 23, 2026