Health System API

Welcome to the Health System API! This API allows you to retrieve medical information such as blood test results, including a full blood count.

API Endpoint

Endpoint: /api/v1/blood-tests/full-blood-count

Request Example

To retrieve a full blood count, make a GET request to the endpoint with the required parameters:

GET /api/v1/blood-tests/full-blood-count HTTP/1.1
Host: healthsystem.example.com
Authorization: Bearer 
        

Response Example

A successful response will return data in JSON format:

{
    "patient_id": "12345",
    "test_date": "2024-12-05",
    "results": {
        "hemoglobin": "13.5 g/dL",
        "white_blood_cells": "6.2 x10^9/L",
        "platelets": "250 x10^9/L",
        "hematocrit": "40%"
    },
    "status": "complete"
}
        

How to Use

  1. Authenticate using your API key to receive a token.
  2. Use the token to make authorized requests to the endpoint.
  3. Parse the JSON response to integrate the data into your application.

Contact

If you have any questions or need support, please contact us at support@healthsystem.example.com.