> ## Documentation Index
> Fetch the complete documentation index at: https://docs.govfiles.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# List supported jurisdictions

> List the jurisdiction codes currently loaded and queryable in the API.

Return the [jurisdiction codes](/guides/jurisdictions) that are currently loaded and queryable. The `jurisdictions` array is sorted alphabetically. This endpoint is not billed.


## OpenAPI

````yaml GET /v2/jurisdictions
openapi: 3.1.0
info:
  title: govfiles Corporate Entity API
  version: 0.2.0
  description: >-
    Search US business entity records and resolve physical local businesses to
    their legal operators and published principals.
servers:
  - url: https://api.govfiles.dev
security: []
tags:
  - name: Health
    description: Service health checks.
  - name: Companies
    description: Corporate entity search and lookup endpoints.
  - name: Officers
    description: Officer, director, and agent search endpoints.
  - name: Local Businesses
    description: >-
      Asynchronous matching of physical businesses to their legal operators and
      published principals.
  - name: Account
    description: Account and billing endpoints.
paths:
  /v2/jurisdictions:
    get:
      tags:
        - Companies
      summary: List supported jurisdictions
      description: List the jurisdiction codes currently loaded and queryable in the API.
      operationId: listJurisdictionsV2
      parameters: []
      responses:
        '200':
          description: Jurisdiction codes currently loaded and queryable.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JurisdictionsResponse'
        '401':
          description: Missing or invalid API key.
        '422':
          description: Validation error.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    JurisdictionsResponse:
      properties:
        jurisdictions:
          items:
            type: string
          type: array
          description: >-
            Jurisdiction codes currently loaded and queryable in the API, sorted
            alphabetically.
          examples:
            - - us_ca
              - us_de
              - us_ny
          example:
            - us_ca
            - us_de
            - us_ny
      type: object
      required:
        - jurisdictions
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````