Hackathon Quick Start Guide

Build Healthcare AI in 5 Minutes

De-identify FHIR data, send it to Claude/GPT, and get re-identified responses. HIPAA-grade accuracy. HIPAA compliant. Zero infrastructure setup.

18/18
HIPAA Identifiers
<50ms
Response Time
5 min
Setup Time

Get Started in 3 Steps

Copy, paste, and you're de-identifying healthcare data

Step 1

Get Your JWT Token

Sign up and copy your token - takes 30 seconds

# Visit medscrub.ai/signup
# Click "Dashboard" → "JWT Tokens"
# Copy your token
Step 2

Install Client Library

Choose Python, JavaScript, or TypeScript

Python
pip install requests
JavaScript/TypeScript
npm install node-fetch
Step 3

De-identify FHIR Data

Copy this code and start building

Python Example
import requests

JWT_TOKEN = "your-token-here"  # From Step 1

patient = {
    "resourceType": "Patient",
    "name": [{"family": "Doe", "given": ["John"]}],
    "birthDate": "1990-01-01"
}

response = requests.post(
    "https://api.medscrub.ai/api/fhir/deidentify",
    headers={"Authorization": f"Bearer {JWT_TOKEN}"},
    json={"resource": patient}
)

result = response.json()
print(f"Session ID: {result['sessionId']}")
print(f"De-identified: {result['deidentifiedResource']}")

What Can You Build?

AI Medical Chatbots

De-identify patient records before sending to Claude/GPT. Get clinical insights while maintaining HIPAA compliance.

EHR Data Pipelines

Process FHIR bundles through analytics or ML models without exposing PHI. Perfect for research datasets.

Clinical Decision Support

Build AI-powered clinical tools that analyze de-identified patient data and provide actionable recommendations.

Hackathon Resources

Sample Projects

Production-ready client libraries in Python, JavaScript, and TypeScript

API Documentation

Complete API reference with examples and best practices

Interactive Playground

Test de-identification in your browser with live FHIR examples

Demo Commands

40+ copy-paste examples for common healthcare AI workflows

Why MedScrub for Hackathons?

Instant Setup

No Docker, no infrastructure, no DevOps. Sign up and start building in 5 minutes.

HIPAA Compliant

HIPAA-grade accuracy on FHIR data. All 18 HIPAA Safe Harbor identifiers covered.

Lightning Fast

<50ms response time globally. Hosted on Cloudflare's edge network.

Free Tier

100 requests/hour free. Perfect for hackathons and prototypes. No credit card required.

Ready to Build?

Join developers building the future of healthcare AI. Get your JWT token and start de-identifying FHIR data in minutes.

Questions? Reach out at support@medscrub.ai or GitHub Issues