# GovFiles Jurisdictions List

> GovFiles Jurisdictions List is a paid API for AI agents from govfiles-api-git-mason-router-update-merit-systems.vercel.app, paid per call via x402, $0.4/call, status unknown (last checked 2026-09-15).

Returns the list of jurisdiction codes currently loaded and queryable in the GovFiles API, such as us_de or us_ca, for use as filters in company searches.

## Facts

- Endpoint: GET https://govfiles-api-git-mason-router-update-merit-systems.vercel.app/api/govfiles/jurisdictions
- Price: $0.4/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govfiles-jurisdictions-list-a6808bb4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ELBT8e_2K26P3nv1tVNp3

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability govfiles-jurisdictions-list-a6808bb4
```

Example prompt: Before I search for companies, can you pull up the list of jurisdiction codes available in GovFiles so I know which ones I can use as filters?

## When to prefer this

Use this endpoint when you need to discover valid jurisdiction filter values before making a GovFiles company search request, or when building a UI that needs to enumerate supported geographic scopes. Prefer this over hardcoding jurisdiction codes, as available jurisdictions may change as datasets are loaded or removed.

## Known failure modes

- No jurisdiction data loaded — returns empty list or 404 if the dataset is not yet populated
- Service unavailable — 5xx error if the Vercel deployment is down or cold-starting
- Payment required — 402 error if the x402 payment header is missing or invalid
- Unexpected schema change — response structure may vary if the API is under active development (indicated by git branch in hostname)

## How this service works

List the jurisdiction codes currently loaded and queryable (e.g. us_de, us_ca). Use these to scope a company search with the `jurisdictions` filter.

## Output

An array or list of jurisdiction code strings (e.g. us_de, us_ca) representing the geographic scopes currently loaded and queryable in the GovFiles API, which can be passed as filter values in subsequent company search requests.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govfiles-jurisdictions-list-a6808bb4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from govfiles-api-git-mason-router-update-merit-systems.vercel.app](https://www.zero.xyz/host/govfiles-api-git-mason-router-update-merit-systems.vercel.app/llms.txt)
