Forta Health Provider Availability Records API

The provider_availability_records API from Forta Health — 2 operation(s) for provider_availability_records.

Operations 4

POST /api/v1/provider_availability/ Create Provider Availability #
GET /api/v1/provider_availability/ Get Provider Availability Records #
PATCH /api/v1/provider_availability/{provider_availability_id}/ Update Provider Availability #
DELETE /api/v1/provider_availability/{provider_availability_id}/ Delete Provider Availability #

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/forta-health-provider-availability-records-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

forta-health-provider-availability-records-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Forta Health Provider Availability Records API
  version: 0.1.0
  description: 'Operations tagged provider_availability_records across 2 of this provider''s published API definitions: forta-health-platform-openapi.yml, forta-health-provider-availability-records-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.prod.fortahealth.com/api/v1/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: provider_availability_records
paths:
  /api/v1/provider_availability/:
    post:
      tags:
      - provider_availability_records
      summary: Create Provider Availability
      operationId: create_provider_availability_api_v1_provider_availability__post
      security:
      - HTTPBearer: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProviderAvailabilityCreate'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderAvailabilityResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - provider_availability_records
      summary: Get Provider Availability Records
      operationId: get_provider_availability_records_api_v1_provider_availability__get
      security:
      - HTTPBearer: []
      parameters:
      - name: provider_id
        in: query
        required: false
        schema:
          anyOf:
          - type: integer
          - type: 'null'
          title: Provider Id
      - name: timezone
        in: query
        required: false
        schema:
          anyOf:
          - $ref: '#/components/schemas/TimeZoneEnum'
          - type: 'null'
          title: Timezone
      - name: day_of_week
        in: query
        required: false
        schema:
          anyOf:
          - $ref: '#/components/schemas/DayOfWeek'
          - type: 'null'
          title: Day Of Week
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProviderAvailabilityResponse'
                title: Response Get Provider Availability Records Api V1 Provider Availability  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/provider_availability/{provider_availability_id}/:
    patch:
      tags:
      - provider_availability_records
      summary: Update Provider Availability
      operationId: update_provider_availability_api_v1_provider_availability__provider_availability_id___patch
      security:
      - HTTPBearer: []
      parameters:
      - name: provider_availability_id
        in: path
        required: true
        schema:
          type: integer
          title: Provider Availability Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProviderAvailabilityPatch'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderAvailabilityResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - provider_availability_records
      summary: Delete Provider Availability
      operationId: delete_provider_availability_api_v1_provider_availability__provider_availability_id___delete
      security:
      - HTTPBearer: []
      parameters:
      - name: provider_availability_id
        in: path
        required: true
        schema:
          type: integer
          title: Provider Availability Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DayOfWeek:
      type: string
      enum:
      - MONDAY
      - TUESDAY
      - WEDNESDAY
      - THURSDAY
      - FRIDAY
      - SATURDAY
      - SUNDAY
      title: DayOfWeek
    ProviderAvailabilityResponse:
      properties:
        day_of_week:
          $ref: '#/components/schemas/DayOfWeek'
        time_start:
          type: string
          format: time
          title: Time Start
        time_end:
          type: string
          format: time
          title: Time End
        provider_id:
          anyOf:
          - type: integer
          - type: 'null'
          title: Provider Id
        timezone:
          $ref: '#/components/schemas/TimeZoneEnum'
        id:
          type: integer
          title: Id
        provider:
          $ref: '#/components/schemas/ProviderListResponse'
      type: object
      required:
      - day_of_week
      - time_start
      - time_end
      - timezone
      - id
      - provider
      title: ProviderAvailabilityResponse
    ClinicalStatusEnum:
      type: string
      enum:
      - PRE CLINICAL
      - CLINICAL
      - ON HOLD
      - OFFBOARDED
      - LIMITED ACCESS GUARDIAN
      title: ClinicalStatusEnum
    ProviderAvailabilityPatch:
      properties:
        day_of_week:
          $ref: '#/components/schemas/DayOfWeek'
        time_start:
          type: string
          format: time
          title: Time Start
        time_end:
          type: string
          format: time
          title: Time End
      type: object
      required:
      - day_of_week
      - time_start
      - time_end
      title: ProviderAvailabilityPatch
    ProviderAvailabilityCreate:
      properties:
        day_of_week:
          $ref: '#/components/schemas/DayOfWeek'
        time_start:
          type: string
          format: time
          title: Time Start
        time_end:
          type: string
          format: time
          title: Time End
        provider_id:
          anyOf:
          - type: integer
          - type: 'null'
          title: Provider Id
        timezone:
          $ref: '#/components/schemas/TimeZoneEnum'
      type: object
      required:
      - day_of_week
      - time_start
      - time_end
      - timezone
      title: ProviderAvailabilityCreate
    TimeZoneEnum:
      type: string
      enum:
      - America/New_York
      - America/Los_Angeles
      - America/Chicago
      - America/Denver
      - America/Phoenix
      - America/Honolulu
      - America/Anchorage
      title: TimeZoneEnum
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ProviderListResponse:
      properties:
        id:
          type: integer
          title: Id
        first_name:
          type: string
          title: First Name
        last_name:
          type: string
          title: Last Name
        email:
          type: string
          format: email
          title: Email
        status:
          type: string
          title: Status
        clinical_status:
          $ref: '#/components/schemas/ClinicalStatusEnum'
      type: object
      required:
      - id
      - first_name
      - last_name
      - email
      - status
      - clinical_status
      title: ProviderListResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
x-refined-from:
- forta-health-platform-openapi.yml
- forta-health-provider-availability-records-api-openapi.yml