Middesk subpackage_jurisdictions API

The subpackage_jurisdictions API from Middesk — 2 operation(s) for subpackage_jurisdictions.

Operations 2

GET /v1/agent/jurisdictions/search Search jurisdictions #
GET /v1/agent/jurisdictions Fetch supported local jurisdictions #

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/middesk-subpackage-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

middesk-subpackage-jurisdictions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Middesk subpackage_actions Subpackage Jurisdictions API
  version: 1.0.0
servers:
- url: https://api.middesk.com
  description: Default
tags:
- name: subpackage_jurisdictions
paths:
  /v1/agent/jurisdictions/search:
    get:
      operationId: search-jurisdictions
      summary: Search jurisdictions
      description: Search for jurisdictions by name, PSD code, or other criteria. Supports filtering by state, tax type, and jurisdiction type. Results are paginated.
      tags:
      - subpackage_jurisdictions
      parameters:
      - name: state
        in: query
        description: Two-letter US state abbreviation (e.g., OH, PA)
        required: false
        schema:
          type: string
      - name: q
        in: query
        description: Search query (name, PSD code, or municipality)
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: Page number for pagination
        required: false
        schema:
          type: integer
      - name: per_page
        in: query
        description: Number of results per page
        required: false
        schema:
          type: integer
      - name: tax_type
        in: query
        description: Filter by tax type (e.g., CITY, EIT, LST)
        required: false
        schema:
          type: string
      - name: local_only
        in: query
        description: When true, returns only local jurisdictions
        required: false
        schema:
          type: string
      - name: supported_only
        in: query
        description: When true, returns only supported jurisdictions
        required: false
        schema:
          type: string
      - name: slug
        in: query
        description: Filter by jurisdiction slug
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: jurisdictions search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type_jurisdictions_SearchJurisdictionsResponse'
  /v1/agent/jurisdictions:
    get:
      operationId: list-jurisdictions
      summary: Fetch supported local jurisdictions
      tags:
      - subpackage_jurisdictions
      parameters:
      - name: state
        in: query
        description: US state abbreviation (e.g., CO, CA, NY)
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: jurisdictions list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type_jurisdictions_ListJurisdictionsResponse'
components:
  schemas:
    type__AgentJurisdiction:
      type: object
      properties:
        object:
          type: string
        slug:
          type: string
          description: Unique identifier for the jurisdiction
        type:
          type: string
          description: Type of tax (e.g., City Tax, State Tax)
        label:
          type: string
          description: Display label for the jurisdiction
        name:
          type: string
          description: Full name of the jurisdiction
        agency_name:
          type: string
          description: Name of the tax agency
        agency_slug:
          type: string
          description: Unique identifier for the agency
        agency_items:
          type: array
          items:
            type: string
          description: List of items collected by the agency
        city:
          type:
          - string
          - 'null'
          description: City name if applicable
        state:
          type: string
          description: US state abbreviation
      required:
      - object
      - slug
      - name
      - state
      title: AgentJurisdiction
    type_jurisdictions_ListJurisdictionsResponseSearchConfig:
      type: object
      properties:
        hint:
          type: string
        help_text:
          type:
          - string
          - 'null'
        help_url:
          type:
          - string
          - 'null'
      title: ListJurisdictionsResponseSearchConfig
    type_jurisdictions_ListJurisdictionsResponse:
      type: object
      properties:
        object:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/type__AgentJurisdiction'
        search_config:
          oneOf:
          - $ref: '#/components/schemas/type_jurisdictions_ListJurisdictionsResponseSearchConfig'
          - type: 'null'
      title: ListJurisdictionsResponse
    type_jurisdictions_SearchJurisdictionsResponse:
      type: object
      properties:
        object:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/type__AgentJurisdiction'
        url:
          type: string
        has_more:
          type: boolean
        total_count:
          type: integer
      title: SearchJurisdictionsResponse
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer