Orange Health Orange Health Partner API

The Orange Health Partner API API from Orange Health — 0 operation(s) for orange health partner api.

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/orange-health-orange-health-partner-api-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

orange-health-orange-health-partner-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orange Health Partner API
  version: v1
  description: Partner API for Orange Health Labs — a home-collection diagnostics lab serving Indian metros. Partners check serviceability, create home-collection, lab-drop-off and camp orders, track order status, reschedule/cancel/add-on to orders, and pull structured test results. Order lifecycle transitions are delivered as HMAC-signed webhooks. Derived from the published Apiary API Blueprint (Partner API Public Order Flow).
  contact:
    name: Orange Health Integrations
    email: integrations@orangehealth.in
    url: https://orangehealth.docs.apiary.io/
  x-apievangelist:
    method: derived
    source: openapi/orange-health-partner-api.apib
    generated: '2026-07-20'
servers:
- url: https://partner-api.orangehealth.in
  description: Production
- url: https://sandbox-partner-api.orangehealth.dev
  description: Sandbox / testing
security:
- ApiKeyAuth: []
tags:
- name: Orange Health Partner API
paths: {}
webhooks:
  orderEvent:
    post:
      operationId: receiveOrderWebhook
      summary: Order/task/test lifecycle event
      description: 'Orange Health POSTs HMAC-SHA256-signed lifecycle events to the partner''s registered URL. Signature is in the X-OH-Signature header (key = webhook secret, message = raw body). Deduplicate on the x-oh-event-id header (uuid). Non-2xx responses are retried with exponential backoff for up to 7 days. Event types: order.created, task.confirmed, task.assigned, task.accepted, task.started, task.in_progress, task.completed, test.completed_not_sent, test.completed_sent, order.completed, order.cancelled, task.deleted.'
      parameters:
      - name: X-OH-Signature
        in: header
        required: true
        schema:
          type: string
        description: HMAC-SHA256 hex digest of the raw body keyed by the webhook secret.
      - name: x-oh-event-id
        in: header
        required: true
        schema:
          type: string
          format: uuid
        description: Unique event id for idempotency.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookEnvelope'
      responses:
        '200':
          description: Event acknowledged.
      tags:
      - Orange Health Partner API
components:
  schemas:
    WebhookEnvelope:
      type: object
      description: Common webhook envelope — event name, contained keys, and payload.
      properties:
        event:
          type: string
          description: object.verb, e.g. order.created
        contains:
          type: array
          items:
            type: string
        payload:
          type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key
      description: 'Partner API key sent in the api_key header. Public sandbox keys: partner-alwaysPartner, partner-alwaysOH, partner-decidedAtOrderLevel. Production keys via integrations@orangehealth.in.'