AI-enabled health insurance, now with a data API

Your health data, on tap.

Better health insurance has arrived. Query medical claims, pharmacy, and eligibility for every group you manage — scoped, secured, and export-ready. One full-stack platform connecting data, partners, and plan customization into a single source of truth.

3
Unified datasets
100+
Payroll & HRIS integrations
4.5★
Member satisfaction

Trusted infrastructure for modern benefits teams

PayrollHRISTPAsBrokersCarriersStop-Loss
The platform

Modern management for the data behind your benefits

A thin, authenticated, scoped layer over the Angle Health warehouse. Everything your team needs to manage eligibility, reporting, and access — centrally.

Group-scoped by design

Every request is intersected with the groups you're authorized to see. Out-of-scope access is impossible, not just discouraged.

Synchronous reads

Pull row-capped JSON in real time for dashboards and spot checks, with truncation flags so you always know when there's more.

Async exports at scale

Kick off CSV or Excel exports, poll the job, and download a presigned file — built for full-dataset pulls.

Clerk-secured PHI

Session tokens are verified server-side on every call. Authentication and per-user authorization, end to end.

Datasets

Three sources of truth, one API

Filter by group and date range, read it live, or export the full set. The column sets are stable and published in the OpenAPI schema.

Medical Claims

One row per claim line item — billed, paid, copay, deductible, coinsurance, provider and billing detail, diagnostic codes, in/out of network.

Rx Claims

Pharmacy claims with NDC, prescriber, pharmacy, copay, deductible, and total charge — filterable by service date.

Eligibility & Coverage

One row per member: effective and term dates, plan, HDHP flags, demographics and address — with overlap-aware date filtering.

Infrastructure

Better insurance requires a better infrastructure

A full-stack health insurance plan that connects data, partners, and plan customization into a unified experience — and finally exposes it to the teams that need it.

Easy procurement

Level-funded plans that simplify how employers buy coverage — rapid quotes and firm pricing from member-level census data.

Modern management

Integrates with 100+ payroll, HRIS, and benefits systems so you manage eligibility, reporting, and access from one place.

Elite engagement

A dedicated care team helps members understand benefits and navigate care — backed by data you can actually reach.

For developers

A REST API you can curl

Send the user's Clerk session token as a bearer. Group scoping, validation, and presigned downloads are handled for you.

  • GET /groups — the groups you're allowed to see
  • GET /claims · /rx-claims · /eligibility — scoped JSON reads
  • POST /exports — async CSV / XLSX jobs
  • GET /exports/{id} — poll → presigned S3 URL
export-claims.ts
const token = await getToken();        // Clerk

// start an export job
const job = await fetch("/third-party-data/exports", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${token}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    dataset: "claims",
    format: "xlsx",
    group_ids: ["UT335779"],
  }),
}).then((r) => r.json());

// poll until it's ready, then download
while (["queued", "running"].includes(job.status)) {
  await sleep(1500);
  job = await poll(job.job_id);
}
window.location.href = job.presigned_url;

Stop exporting spreadsheets by hand

Sign in with your Angle Health account and start querying your groups in seconds.