AmTrust Experience Claims Medical Case API

Medical case management claims API — retrieve claim data, claim summaries and claim notes by claim number, and save claim notes.

Operations 4

GET /api/v{version}/claims/{claimNumber} Mcm_GetClaimData #
GET /api/v{version}/claim-summaries/{claimNumber} Mcm_GetClaimSummariesData #
GET /api/v{version}/claim-notes/{claimNumber} Mcm_GetClaimNotes #
POST /api/v{version}/claim-notes/{claimNumber} Mcm_SaveClaimNotes #

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/amtrust-financial-services-experience-claims-medical-case-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

amtrust-financial-services-experience-claims-medical-case-api-openapi.json Raw ↑
{
  "openapi": "3.0.1",
  "info": {
    "title": "Experience Claims Medical Case - Live",
    "description": "Experience Claims Medical Case",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "https://gateway.amtrustgroup.com/experience-claims-medical-case"
    },
    {
      "url": "https://prod-apim-gw.amtrustservices.com/experience-claims-medical-case"
    }
  ],
  "paths": {
    "/api/v{version}/claims/{claimNumber}": {
      "get": {
        "tags": [
          "Mcm"
        ],
        "summary": "Mcm_GetClaimData",
        "operationId": "Mcm_GetClaimData",
        "parameters": [
          {
            "name": "claimNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "version",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/octet-stream": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                },
                "examples": {
                  "default": {
                    "value": null
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v{version}/claim-summaries/{claimNumber}": {
      "get": {
        "tags": [
          "Mcm"
        ],
        "summary": "Mcm_GetClaimSummariesData",
        "operationId": "Mcm_GetClaimSummariesData",
        "parameters": [
          {
            "name": "claimNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "version",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/octet-stream": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                },
                "examples": {
                  "default": {
                    "value": null
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v{version}/claim-notes/{claimNumber}": {
      "get": {
        "tags": [
          "Mcm"
        ],
        "summary": "Mcm_GetClaimNotes",
        "operationId": "Mcm_GetClaimNotes",
        "parameters": [
          {
            "name": "claimNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "version",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "creationDate",
            "in": "query",
            "schema": {
              "type": "string",
              "format": "date-time",
              "nullable": true
            }
          },
          {
            "name": "includeArribaNotes",
            "in": "query",
            "schema": {
              "type": "boolean",
              "nullable": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/octet-stream": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                },
                "examples": {
                  "default": {
                    "value": null
                  }
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "Mcm"
        ],
        "summary": "Mcm_SaveClaimNotes",
        "operationId": "Mcm_SaveClaimNotes",
        "parameters": [
          {
            "name": "claimNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "version",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateNoteDto"
              },
              "example": {
                "Id": 0,
                "Type": "string",
                "SubType": "string",
                "Subject": "string",
                "Note": "string",
                "ActivityDate": "string"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/octet-stream": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                },
                "examples": {
                  "default": {
                    "value": null
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "CreateNoteDto": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int32"
          },
          "Type": {
            "type": "string"
          },
          "SubType": {
            "type": "string"
          },
          "Subject": {
            "type": "string"
          },
          "Note": {
            "type": "string"
          },
          "ActivityDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      }
    },
    "securitySchemes": {
      "apiKeyHeader": {
        "type": "apiKey",
        "name": "subscriber_id",
        "in": "header"
      },
      "apiKeyQuery": {
        "type": "apiKey",
        "name": "subscription-key",
        "in": "query"
      }
    }
  },
  "security": [
    {
      "apiKeyHeader": []
    },
    {
      "apiKeyQuery": []
    }
  ]
}