Hint Health PaymentMethod API

The PaymentMethod API from Hint Health — 3 operation(s) for paymentmethod.

Operations 5

POST /provider/patients/{patient_id}/payment_methods Create Payment Method #
GET /provider/patients/{patient_id}/payment_methods List All Payment Methods #
POST /provider/patients/{patient_id}/payment_methods/setup Create Setup Intent #
DELETE /provider/patients/{patient_id}/payment_methods/{id} Delete Payment Method #
GET /provider/patients/{patient_id}/payment_methods/{id} Show Payment Method #

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-paymentmethod-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-paymentmethod-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hint Health Payment Method 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 PaymentMethod 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: PaymentMethod
paths:
  /provider/patients/{patient_id}/payment_methods:
    post:
      tags:
      - PaymentMethod
      operationId: PaymentMethod.CreatePaymentMethod
      summary: Create Payment Method
      description: 'Exactly one of `rainforest_id` or `stripe_id` must be provided. Practices on Hint Payments

        (Rainforest) submit a `rainforest_id`; practices on Stripe submit a `stripe_id`.'
      parameters:
      - name: patient_id
        in: path
        required: true
        description: Unique Patient ID
        schema:
          type: string
      responses:
        '201':
          description: Successful response
          content:
            application/json:
              example:
                id: bnk-ab12C345DeF6
                default: true
                last_four: '4242'
                name: Bank of America NA
                type: bank_account
                bank_account:
                  id: bnk-ab12C345DeF6
                  last_four: '4242'
                  name: Bank of America NA
                  stripe_token: tok_1234
                  type: BankAccount
                card: null
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Provider.Patients.PaymentMethodsController.create_body'
      security:
      - BearerAuth: []
    get:
      tags:
      - PaymentMethod
      operationId: PaymentMethod.ListAllPaymentMethods
      summary: List All Payment Methods
      description: ''
      parameters:
      - name: patient_id
        in: path
        required: true
        description: Unique Patient ID
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
              - id: card-ab12C345DeF6
                default: false
                last_four: '4242'
                name: Visa
                type: card
                bank_account: null
                card:
                  id: card-ab12C345DeF6
                  card_type: visa
                  last_four: '4242'
                  name: Visa
                  type: Card
                  exp_month: 7
                  exp_year: 2017
              - id: card-ab12C345DeF6
                default: false
                last_four: '4242'
                name: Visa
                type: card
                bank_account: null
                card:
                  id: card-ab12C345DeF6
                  card_type: visa
                  last_four: '4242'
                  name: Visa
                  type: Card
                  exp_month: 7
                  exp_year: 2017
              - id: bnk-ab12C345DeF6
                default: true
                last_four: '4242'
                name: Bank of America NA
                type: bank_account
                bank_account:
                  id: bnk-ab12C345DeF6
                  last_four: '4242'
                  name: Bank of America NA
                  stripe_token: tok_1234
                  type: BankAccount
                card: null
      security:
      - BearerAuth: []
    servers:
    - url: https://api.hint.com/api
      description: Production
    - url: https://api.sandbox.hint.com/api
      description: Sandbox
  /provider/patients/{patient_id}/payment_methods/setup:
    post:
      tags:
      - PaymentMethod
      operationId: PaymentMethod.CreateSetupIntent
      summary: Create Setup Intent
      description: 'The response shape depends on the practice''s payment processor (`payment_processor` in the response):

        - When `rainforest`: `payment_method_config_id`, `session_key`, and `allowed_methods` are returned.

        - When `stripe`: `stripe_client_secret` is returned instead.

        The example below shows the `rainforest` variant.'
      parameters:
      - name: patient_id
        in: path
        required: true
        description: Unique Patient ID
        schema:
          type: string
      responses:
        '201':
          description: Successful response
          content:
            application/json:
              example:
                payment_processor: rainforest
                payment_method_config_id: pmc_1234567890
                session_key: skey_1234
                allowed_methods: ACH,CARD
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Provider.Patients.PaymentMethods.SetupController.create_body'
      security:
      - BearerAuth: []
    servers:
    - url: https://api.hint.com/api
      description: Production
    - url: https://api.sandbox.hint.com/api
      description: Sandbox
  /provider/patients/{patient_id}/payment_methods/{id}:
    delete:
      tags:
      - PaymentMethod
      operationId: PaymentMethod.DeletePaymentMethod
      summary: Delete Payment Method
      description: ''
      parameters:
      - name: patient_id
        in: path
        required: true
        description: Unique Patient ID
        schema:
          type: string
      - name: id
        in: path
        required: true
        description: Unique Payment Method ID
        schema:
          type: string
      responses:
        '204':
          description: No content
      security:
      - BearerAuth: []
    get:
      tags:
      - PaymentMethod
      operationId: PaymentMethod.ShowPaymentMethod
      summary: Show Payment Method
      description: ''
      parameters:
      - name: patient_id
        in: path
        required: true
        description: Unique Patient ID
        schema:
          type: string
      - name: id
        in: path
        required: true
        description: Unique Payment Method ID
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
                id: bnk-ab12C345DeF6
                default: true
                last_four: '4242'
                name: Bank of America NA
                type: bank_account
                bank_account:
                  id: bnk-ab12C345DeF6
                  last_four: '4242'
                  name: Bank of America NA
                  stripe_token: tok_1234
                  type: BankAccount
                card: null
      security:
      - BearerAuth: []
    servers:
    - url: https://api.hint.com/api
      description: Production
    - url: https://api.sandbox.hint.com/api
      description: Sandbox
components:
  schemas:
    Provider.Patients.PaymentMethods.SetupController.create_body:
      type: object
      properties:
        user_is_owner:
          type: boolean
        accepts_bank:
          type: boolean
      required:
      - user_is_owner
      - accepts_bank
    Provider.Patients.PaymentMethodsController.create_body:
      type: object
      properties:
        rainforest_id:
          type: string
          description: Tokenized payment method id from Rainforest. Required if the practice uses Hint Payments.
        stripe_id:
          type: string
          description: Tokenized payment method id from Stripe. Required if the practice uses Stripe.
  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