Mark43 Cases API

The Cases API from Mark43 — 3 operation(s) for cases.

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/mark43-cases-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 email required.

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

OpenAPI Specification

mark43-cases-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Mark43 Partnerships Associated Records Cases API
  version: external
  description: 'Mark43''s Partnerships (External) API lets approved law-enforcement technology partners integrate with a Mark43 agency''s cloud RMS and CAD: create and read reports, persons, evidence and chain-of-custody, attachments, CAD events, warrants, tasks, users, and E911 data. REST over HTTPS with JSON payloads and HTTP Basic authentication using secure API tokens.'
  x-provenance:
    method: derived
    source: https://developers.mark43.com/
    generated: '2026-07-20'
servers:
- url: https://{department}.mark43.com/partnerships/api
  description: Per-agency Mark43 tenant. Replace {department} with your agency subdomain.
  variables:
    department:
      default: department
      description: Your agency's Mark43 tenant subdomain.
security:
- httpBasic: []
tags:
- name: Cases
paths:
  /partnerships/api/external/cases:
    get:
      tags:
      - Cases
      operationId: getCases
      summary: Retrieve cases (Cases)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/cases/notes/:
    post:
      tags:
      - Cases
      operationId: postCasesNotes
      summary: Create/submit notes (Cases)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/cases/updated:
    get:
      tags:
      - Cases
      operationId: getCasesUpdated
      summary: Retrieve updated (Cases)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
components:
  schemas:
    ApiResult:
      type: object
      description: Standard Mark43 response envelope wrapping every endpoint's payload.
      properties:
        data:
          description: The created or retrieved object(s); shape varies by endpoint.
        success:
          type: boolean
          description: Whether the request succeeded.
        error:
          type: string
          description: Error message populated when success is false.
      required:
      - success
  securitySchemes:
    httpBasic:
      type: http
      scheme: basic
      description: Secure API token presented via the standard HTTP Basic Authorization header on every request; issued by your Mark43 Technical Services Representative.