Amobee Health Check API

The health-check API from Amobee — 1 operation(s) for health-check.

Operations 1

GET /healthcheck/status #

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/amobee-health-check-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

amobee-health-check-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenAPI definition Health Check API
  version: v0
servers:
- url: https://services.amobee.com
  description: Generated server url
tags:
- name: health-check
paths:
  /healthcheck/status:
    get:
      tags:
      - health-check
      operationId: getAppname
      parameters:
      - name: headers
        in: header
        required: true
        schema:
          $ref: '#/components/schemas/HttpHeaders'
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
components:
  schemas:
    HttpRange: {}
    HttpHeaders:
      type: object
      properties:
        contentLength:
          type: integer
          format: int64
        connection:
          type: array
          items:
            type: string
        ifModifiedSince:
          type: integer
          format: int64
        contentType:
          $ref: '#/components/schemas/MediaType'
        date:
          type: integer
          format: int64
        lastModified:
          type: integer
          format: int64
        all:
          type: object
          additionalProperties:
            type: string
          writeOnly: true
        range:
          type: array
          items:
            $ref: '#/components/schemas/HttpRange'
        origin:
          type: string
        location:
          type: string
          format: uri
        host:
          type: object
          properties:
            hostName:
              type: string
            hostString:
              type: string
            unresolved:
              type: boolean
            address:
              type: object
              properties:
                hostName:
                  type: string
                anyLocalAddress:
                  type: boolean
                multicastAddress:
                  type: boolean
                loopbackAddress:
                  type: boolean
                siteLocalAddress:
                  type: boolean
                mcglobal:
                  type: boolean
                mcnodeLocal:
                  type: boolean
                mclinkLocal:
                  type: boolean
                mcsiteLocal:
                  type: boolean
                mcorgLocal:
                  type: boolean
                canonicalHostName:
                  type: string
                linkLocalAddress:
                  type: boolean
                address:
                  type: string
                  format: byte
                hostAddress:
                  type: string
            port:
              type: integer
              format: int32
        allow:
          type: array
          items:
            $ref: '#/components/schemas/HttpMethod'
          uniqueItems: true
        accept:
          type: array
          items:
            $ref: '#/components/schemas/MediaType'
        acceptLanguageAsLocales:
          type: array
          items:
            type: string
        acceptPatch:
          type: array
          items:
            $ref: '#/components/schemas/MediaType'
        accessControlAllowCredentials:
          type: boolean
        accessControlAllowHeaders:
          type: array
          items:
            type: string
        accessControlAllowMethods:
          type: array
          items:
            $ref: '#/components/schemas/HttpMethod'
        accessControlAllowOrigin:
          type: string
        accessControlExposeHeaders:
          type: array
          items:
            type: string
        accessControlMaxAge:
          type: integer
          format: int64
        accessControlRequestHeaders:
          type: array
          items:
            type: string
        accessControlRequestMethod:
          $ref: '#/components/schemas/HttpMethod'
        acceptCharset:
          type: array
          items:
            type: string
        bearerAuth:
          type: string
          writeOnly: true
        cacheControl:
          type: string
        contentDisposition:
          $ref: '#/components/schemas/ContentDisposition'
        contentLanguage:
          type: string
        etag:
          type: string
        expires:
          type: integer
          format: int64
        ifMatch:
          type: array
          items:
            type: string
        ifNoneMatch:
          type: array
          items:
            type: string
        ifUnmodifiedSince:
          type: integer
          format: int64
        pragma:
          type: string
        upgrade:
          type: string
        vary:
          type: array
          items:
            type: string
        acceptLanguage:
          type: array
          items:
            type: object
            properties:
              range:
                type: string
              weight:
                type: number
                format: double
        basicAuth:
          type: string
          writeOnly: true
        empty:
          type: boolean
    ContentDisposition:
      type: object
      properties:
        type:
          type: string
        name:
          type: string
        filename:
          type: string
        charset:
          type: string
        attachment:
          type: boolean
        formData:
          type: boolean
        inline:
          type: boolean
    MediaType:
      type: object
      properties:
        type:
          type: string
        subtype:
          type: string
        parameters:
          type: object
          additionalProperties:
            type: string
        qualityValue:
          type: number
          format: double
        concrete:
          type: boolean
        charset:
          type: string
        wildcardType:
          type: boolean
        wildcardSubtype:
          type: boolean
        subtypeSuffix:
          type: string
    HttpMethod: {}