BUILD ON INTELLIGENCE
The LAW API gives your platform access to 1,900,000+ curated legal passages, 995 primary sources, Black's Law precision, and citation verification.
Authentication
All API requests require an API key passed via the X-API-Key header. Keys inherit your subscription tier and its rate limits.
Generate a key from your dashboard. Raw keys are shown once — store them securely.
Endpoints
/api/v1/searchFull-text search across 1,900,000+ legal passages and 995 primary sources with relevance ranking.
qstringrequiredSearch querylimitnumberoptionalResults to return (default 10, max 50)/api/v1/breakdownTiered legal analysis of a statute with plain-English explanation and case law.
statutestringrequiredStatute citation (e.g. 42 USC 1983)tierstringoptionalDepth: essential | practitioner (default essential)/api/v1/verifyVerify citations in a text block against the Gage primary source library.
textstring (body)requiredText containing citations to verifyCode Examples
Search endpoint — replace law_your_key with your actual key
curl -H "X-API-Key: law_your_key" \ "https://law.gagegreengroup.com/api/v1/search?q=habeas+corpus"
const res = await fetch(
'https://law.gagegreengroup.com/api/v1/search?q=habeas+corpus',
{ headers: { 'X-API-Key': 'law_your_key' } }
)
const data = await res.json()
// { results: [{ id, title, content, source, score }] }import requests
r = requests.get(
'https://law.gagegreengroup.com/api/v1/search',
headers={'X-API-Key': 'law_your_key'},
params={'q': 'habeas corpus'}
)
data = r.json() # { results: [...] }Access
| Tier | Access | API Calls / Month |
|---|---|---|
| Free | Free | 100 |
| Builder | By inquiry | 500 |
| Practitioner | By inquiry | 2,000 |
| Firm | By inquiry | 10,000 |
| Enterprise | By inquiry | Unlimited |
API access is structured for independent researchers, law firms, and enterprise legal departments. Rate limits reset monthly.
Ready to Build?
Generate your API key from the dashboard and start integrating in minutes.
Get Your API Key