Hint Health Integration API

The Integration API from Hint Health — 4 operation(s) for integration.

Operations 5

POST /integrations/{id}/activate Activate Integration #
POST /integrations/{id}/deactivate Deactivate Integration #
GET /integrations List All Integrations #
GET /integrations/{id} Show Integration #
PATCH /integrations/{id} Update Integration #

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/hint-health-integration-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

hint-health-integration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hint Health Integration API
  description: REST API providing programmatic access to Hint Health's direct primary care platform, covering patient and membership management, billing, charges, invoices, clinical data, practice configuration, partner integrations, and webhook event delivery.
  version: '1.0'
  contact:
    name: Hint Health Developer Support
    email: devsupport@hint.com
    url: https://developers.hint.com
  license:
    name: Private
  termsOfService: https://www.hint.com/terms
servers:
- url: https://api.hint.com/api
  description: Production
- url: https://api.sandbox.hint.com/api
  description: Sandbox
security:
- BearerAuth: []
tags:
- name: Integration
paths:
  /integrations/{id}/activate:
    post:
      tags:
      - Integration
      operationId: Integration.ActivateIntegration
      summary: Activate Integration
      description: ''
      parameters:
      - name: id
        in: path
        required: true
        description: Unique Integration ID
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Platform.IntegrationBlueprint_one'
              example:
                id: int-ab12C345DeF6
                expires_in: null
                refresh_token: null
                status: requested
                token_type: bearer
                webhook_url_default: null
                webhook_url_override: https://integration.example.hint.com
                practice:
                  id: pra-ab12C345DeF6
                  name: Dr. Phil
  /integrations/{id}/deactivate:
    post:
      tags:
      - Integration
      operationId: Integration.DeactivateIntegration
      summary: Deactivate Integration
      description: ''
      parameters:
      - name: id
        in: path
        required: true
        description: Unique Integration ID
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Platform.IntegrationBlueprint_one'
              example:
                id: int-ab12C345DeF6
                expires_in: null
                refresh_token: null
                status: inactive
                token_type: bearer
                webhook_url_default: null
                webhook_url_override: https://integration.example.hint.com
                practice:
                  id: pra-ab12C345DeF6
                  name: Dr. Phil
  /integrations:
    get:
      tags:
      - Integration
      operationId: Integration.ListAllIntegrations
      summary: List All Integrations
      description: ''
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Platform.IntegrationBlueprint_all'
              example:
              - id: int-ab12C345DeF6
                expires_in: null
                refresh_token: null
                status: requested
                token_type: bearer
                webhook_url_default: null
                webhook_url_override: https://integration.example.hint.com
                practice:
                  id: pra-ab12C345DeF6
                  name: Dr. Phil
  /integrations/{id}:
    get:
      tags:
      - Integration
      operationId: Integration.ShowIntegration
      summary: Show Integration
      description: ''
      parameters:
      - name: id
        in: path
        required: true
        description: Unique Integration ID
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Platform.IntegrationBlueprint_one'
              example:
                id: int-ab12C345DeF6
                expires_in: null
                refresh_token: null
                status: requested
                token_type: bearer
                webhook_url_default: null
                webhook_url_override: https://integration.example.hint.com
                practice:
                  id: pra-ab12C345DeF6
                  name: Dr. Phil
    patch:
      tags:
      - Integration
      operationId: Integration.UpdateIntegration
      summary: Update Integration
      description: ''
      parameters:
      - name: id
        in: path
        required: true
        description: Unique Integration ID
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Platform.IntegrationBlueprint_one'
              example:
                id: int-ab12C345DeF6
                expires_in: null
                refresh_token: null
                status: requested
                token_type: bearer
                webhook_url_default: null
                webhook_url_override: https://integration.example.hint.com
                practice:
                  id: pra-ab12C345DeF6
                  name: Dr. Phil
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Platform.IntegrationsController.update_body'
components:
  schemas:
    Platform.PracticeBlueprint_for_integration:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
    Platform.IntegrationBlueprint_one:
      type: object
      properties:
        id:
          type: string
        expires_in:
          type: string
        refresh_token:
          type: string
        status:
          type: string
        token_type:
          type: string
        webhook_url_default:
          type: string
          deprecated: true
        webhook_url_override:
          type: string
          deprecated: true
        practice:
          $ref: '#/components/schemas/Platform.PracticeBlueprint_for_integration'
    Platform.IntegrationBlueprint_all:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
          expires_in:
            type: string
          refresh_token:
            type: string
          status:
            type: string
          token_type:
            type: string
          webhook_url_default:
            type: string
            deprecated: true
          webhook_url_override:
            type: string
            deprecated: true
          practice:
            $ref: '#/components/schemas/Platform.PracticeBlueprint_for_integration'
    Platform.IntegrationsController.update_body:
      title: Update_Integration
      type: object
      properties:
        webhook_url_override:
          type: string
          deprecated: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Practice access token or Partner API key (Bearer authentication)