Build with GATOR
Health Intelligence
Connect AI agents and automations to unified health data from labs, wearables, and activity trackers.
Quick Start
Five minutes to your first API call.
curl -H "Authorization: Bearer gator_xxx" \
https://healthgator.ai/api/v1/health-summaryAuthentication
All requests require an Authorization: Bearer gator_xxx header.
Tokens are generated in Settings โ Developer API. They are shown once on creation โ save immediately.
Revoke tokens anytime from Settings. Revoked tokens return 401 immediately.
API Endpoints
Full specification: /api/v1/openapi.json
/api/v1/health-summaryFreeUnified health snapshot: score, readiness, goals, connected devices
/api/v1/health-scoreFreeHealth Score with 7-pillar breakdown and history
days (number, default: 30)/api/v1/labs/summaryFreeAggregate lab statistics (no raw values)
/api/v1/goalsFreeActive health goals with progress tracking
/api/v1/readinessIntelligenceReadiness score with HRV, sleep, recovery, strain components and trend
days (number, default: 7)/api/v1/biomarkersIntelligenceLab biomarkers with reference ranges, percentiles, and clinical ratios
category (string)/api/v1/activitiesIntelligenceDeduplicated workouts with source attribution
days (number, default: 30), type (string)/api/v1/insightsIntelligenceAI-generated health insights with severity and suggested actions
limit (number, default: 5)Rate Limits
| Tier | Requests/Hour | Requests/Day |
|---|---|---|
| Free | 100 | 1,000 |
| Intelligence | 2,000 | 20,000 |
Rate limit headers (X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset) included on every response. Exceeding limits returns 429 with Retry-After header.
MCP Setup (Connect to Claude)
GATOR works natively with Claude via the Model Context Protocol (MCP).
Claude Desktop
- Generate an API token in Settings
- Add this to your Claude Desktop
config.json:
{
"mcpServers": {
"gator": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-remote", "https://healthgator.ai/api/mcp"],
"env": { "GATOR_API_TOKEN": "gator_YOUR_TOKEN" }
}
}
}- Restart Claude Desktop
- Ask Claude about your health data
Available Tools
get_health_summaryUnified health snapshotget_health_scoreHealth score with pillar breakdownget_labs_summaryAggregate lab statisticsget_goalsHealth goals with progressget_readinessReadiness score with trendget_biomarkersLab biomarker resultsget_activitiesWorkout activitiesget_insightsAI-generated insightsCode Examples
curl -H "Authorization: Bearer gator_YOUR_TOKEN" \
https://healthgator.ai/api/v1/health-summaryWebhook Events
Webhooks deliver events via HTTP POST with HMAC-SHA256 signatures. Manage webhooks in Settings or via the API.
readiness.thresholdReadiness score crosses a zone boundarylabs.processedNew lab results uploaded and processedsync.completedDevice sync completed successfullyinsights.generatedNew AI insights availableReady to build?
Generate your API token and start building in minutes.
Get Started Free