Skip to main content
GET
/
api
/
v1
/
statutes
/
states
List US statutes coverage by jurisdiction
curl --request GET \
  --url https://api.vaquill.ai/api/v1/statutes/states \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "jurisdictions": [
      {
        "code": "federal",
        "name": "Federal (USC + CFR)",
        "kind": "federal",
        "sectionCount": 706474,
        "hasData": true
      },
      {
        "code": "ms",
        "name": "Mississippi",
        "kind": "state",
        "sectionCount": 184561,
        "hasData": true
      },
      {
        "code": "nj",
        "name": "New Jersey",
        "kind": "state",
        "sectionCount": 158892,
        "hasData": true
      },
      {
        "code": "tx",
        "name": "Texas",
        "kind": "state",
        "sectionCount": 68338,
        "hasData": true
      },
      {
        "code": "dc",
        "name": "District of Columbia",
        "kind": "state",
        "sectionCount": 0,
        "hasData": false
      }
    ],
    "totalSections": 1960440,
    "stateCountWithData": 50
  },
  "meta": {
    "processingTimeMs": 5385.6,
    "creditsConsumed": 1
  }
}

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_...

Response

Coverage summary across all jurisdictions.