# GovFiles API - List Available Jurisdictions

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

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

## Facts

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

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-api-list-available-jurisdictions-f2bb79c6
```

Example prompt: What jurisdiction codes are available in GovFiles right now so I can figure out which ones to use when searching for companies?

## When to prefer this

Use this endpoint before performing a company search when you need to know which jurisdiction codes are valid filter values. This is the discovery step for scoping GovFiles company queries by region. Prefer this when you need a dynamic, up-to-date list of supported jurisdictions rather than hardcoding state codes.

## Known failure modes

- Payment not provided or insufficient — returns 402 Payment Required
- Service temporarily unavailable — returns 5xx error
- No jurisdictions currently loaded — may return empty list

## 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

A list of jurisdiction code strings (e.g. us_de, us_ca) that are currently loaded and queryable in the GovFiles system, which can be passed as filter values in subsequent company search requests.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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-api-list-available-jurisdictions-f2bb79c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from govfiles-api-git-govfiles-api-x402-merit-systems.vercel.app](https://www.zero.xyz/host/govfiles-api-git-govfiles-api-x402-merit-systems.vercel.app/llms.txt)
