Hint Health CompanyPlan API
The CompanyPlan API from Hint Health — 2 operation(s) for companyplan.
The CompanyPlan API from Hint Health — 2 operation(s) for companyplan.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/hint-health-companyplan-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Hint Health Company Plan API
license:
name: Private
termsOfService: https://www.hint.com/terms
x-refined-note:
- x-api-evangelist-harvest differs across the merged source definitions and was not carried
version: '1.0'
description: 'Operations tagged CompanyPlan across 2 of this provider''s published API definitions: hint-health-hint-health-api-openapi.yml, hint-health-partner-endpoints-2026-07-01-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.hint.com/api
description: Production
- url: https://api.sandbox.hint.com/api
description: Sandbox
tags:
- name: CompanyPlan
paths:
/provider/companies/{company_id}/company_plans:
post:
tags:
- CompanyPlan
operationId: CompanyPlan.CreateCompanyPlan
summary: Create Company Plan
description: ''
parameters:
- name: company_id
in: path
required: true
description: Unique Company ID
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Public.CompanyPlanBlueprint_one'
example:
id: cmpl-ab12C345DeF6
available_for_enrollment: true
is_default: false
plan:
id: pln-ab12C345DeF6
name: Memberships
plan_type: company
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Provider.CompanyPlansController.create_body'
security:
- BearerAuth: []
get:
tags:
- CompanyPlan
operationId: CompanyPlan.ListCompanyPlans
summary: List All Company Plans
description: ''
parameters:
- name: company_id
in: path
required: true
description: Unique Company ID
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Public.CompanyPlanBlueprint_all'
example:
- id: cmpl-ab12C345DeF6
available_for_enrollment: true
is_default: false
plan:
id: pln-ab12C345DeF6
name: Memberships
plan_type: company
security:
- BearerAuth: []
servers:
- url: https://api.hint.com/api
description: Production
- url: https://api.sandbox.hint.com/api
description: Sandbox
/provider/companies/{company_id}/company_plans/{id}:
delete:
tags:
- CompanyPlan
operationId: CompanyPlan.DestroyCompanyPlan
summary: Destroy CompanyPlan
description: ''
parameters:
- name: company_id
in: path
required: true
description: Unique Company ID
schema:
type: string
- name: id
in: path
required: true
description: Unique Company Plan ID
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
example:
id: cmpl-ab12C345DeF6
available_for_enrollment: true
is_default: false
plan:
id: pln-ab12C345DeF6
name: Memberships
plan_type: company
security:
- BearerAuth: []
patch:
tags:
- CompanyPlan
operationId: CompanyPlan.UpdateCompanyPlan
summary: Update Company Plan
description: ''
parameters:
- name: company_id
in: path
required: true
description: Unique Company ID
schema:
type: string
- name: id
in: path
required: true
description: Unique Company Plan ID
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Public.CompanyPlanBlueprint_one'
example:
id: cmpl-ab12C345DeF6
available_for_enrollment: true
is_default: false
plan:
id: pln-ab12C345DeF6
name: Memberships
plan_type: company
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Provider.CompanyPlansController.update_body'
security:
- BearerAuth: []
servers:
- url: https://api.hint.com/api
description: Production
- url: https://api.sandbox.hint.com/api
description: Sandbox
components:
schemas:
Provider.CompanyPlansController.create_body:
title: Create_Company_Plan
type: object
description: Plan Id must be provided.
properties:
plan:
$ref: '#/components/schemas/Association'
description: You must use plans of type "company"
available_for_enrollment:
type: boolean
required:
- plan
- available_for_enrollment
Association:
type: object
properties:
id:
type: string
required:
- id
Public.PlanBlueprint_min:
type: object
properties:
id:
type: string
name:
type: string
plan_type:
type: string
Public.CompanyPlanBlueprint_all:
type: array
items:
type: object
properties:
id:
type: string
available_for_enrollment:
type: boolean
is_default:
type: boolean
plan:
$ref: '#/components/schemas/Public.PlanBlueprint_min'
Public.CompanyPlanBlueprint_one:
type: object
properties:
id:
type: string
available_for_enrollment:
type: boolean
is_default:
type: boolean
plan:
$ref: '#/components/schemas/Public.PlanBlueprint_min'
Provider.CompanyPlansController.update_body:
title: Update_Company_Plan
type: object
properties:
available_for_enrollment:
type: boolean
securitySchemes:
BearerAuth:
type: http
scheme: bearer
description: Practice access token or Partner API key (Bearer authentication)
hint_api_key:
type: apiKey
name: AUTHORIZATION
in: header
description: 'Enter your token in the format: `Bearer {your_api_key}`'
x-refined-from:
- hint-health-hint-health-api-openapi.yml
- hint-health-partner-endpoints-2026-07-01-openapi.yml