Harbor Compliance Jurisdictions API

State and jurisdiction information for compliance requirements.

Operations 2

GET /jurisdictions Harbor Compliance List jurisdictions #
GET /jurisdictions/{state} Harbor Compliance Get jurisdiction details #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/harbor-compliance-jurisdictions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

harbor-compliance-jurisdictions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Harbor Compliance Compliance Filings Jurisdictions API
  description: The Harbor Compliance API enables partners to integrate compliance management capabilities into their platforms. The API provides programmatic access to business licensing, registered agent services, compliance tracking, and entity management workflows. Partners can automate compliance tasks, monitor filing deadlines, manage registered agent appointments, and track licensing requirements across jurisdictions.
  version: '1.0'
  contact:
    name: Harbor Compliance Support
    url: https://www.harborcompliance.com/contact
  termsOfService: https://www.harborcompliance.com/terms-of-service
servers:
- url: https://api.harborcompliance.com/v1
  description: Production Server
security:
- apiKey: []
tags:
- name: Jurisdictions
  description: State and jurisdiction information for compliance requirements.
paths:
  /jurisdictions:
    get:
      operationId: listJurisdictions
      summary: Harbor Compliance List jurisdictions
      description: Returns a list of all supported jurisdictions with their compliance requirements, filing fees, and annual report due dates.
      tags:
      - Jurisdictions
      parameters:
      - name: entity_type
        in: query
        description: Filter jurisdictions by supported entity type.
        schema:
          type: string
          enum:
          - corporation
          - llc
          - lp
          - llp
          - nonprofit
      responses:
        '200':
          description: A list of supported jurisdictions.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Jurisdiction'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /jurisdictions/{state}:
    get:
      operationId: getJurisdiction
      summary: Harbor Compliance Get jurisdiction details
      description: Retrieves detailed compliance requirements for a specific state jurisdiction including annual report deadlines, filing fees, and registered agent requirements by entity type.
      tags:
      - Jurisdictions
      parameters:
      - name: state
        in: path
        required: true
        description: Two-letter state code (e.g., CA, NY, DE).
        schema:
          type: string
          pattern: ^[A-Z]{2}$
      responses:
        '200':
          description: Jurisdiction compliance details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Jurisdiction'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Jurisdiction:
      type: object
      title: Jurisdiction
      description: A U.S. state jurisdiction with its compliance requirements.
      required:
      - state
      - name
      properties:
        state:
          type: string
          description: Two-letter state code.
          pattern: ^[A-Z]{2}$
        name:
          type: string
          description: Full name of the state or jurisdiction.
        annual_report_due:
          type: string
          description: Description of when annual reports are due (e.g., 'April 15 each year').
        registered_agent_required:
          type: boolean
          description: Whether a registered agent is required for business entities in this state.
        supported_entity_types:
          type: array
          description: Entity types supported for registration in this jurisdiction.
          items:
            type: string
            enum:
            - corporation
            - llc
            - lp
            - llp
            - nonprofit
        filing_fees:
          type: object
          description: Map of entity type to annual report filing fee in USD.
          additionalProperties:
            type: number
    Error:
      type: object
      title: Error
      description: Error response returned when a request fails.
      required:
      - code
      - message
      properties:
        code:
          type: string
          description: Machine-readable error code.
        message:
          type: string
          description: Human-readable description of the error.
        details:
          type: array
          description: Additional details about specific validation errors.
          items:
            type: object
            properties:
              field:
                type: string
                description: The field that caused the error.
              message:
                type: string
                description: Description of the field-level error.
  responses:
    Unauthorized:
      description: Authentication credentials are missing or invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The requested resource was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authenticating partner requests. Obtain your API key from the Harbor Compliance developer portal.
externalDocs:
  description: Harbor Compliance Developer Documentation
  url: https://developers.harborcompliance.com/