Auth57 developers — TypeScript SDK, REST API, MCP server.
One source-linked, human-verified prior-authorization rule corpus — 10,402 rules across 51 states and 6 programs, scoped to CMS-0057-F (final, in force) and CMS-0062-P (proposed) — accessible five ways: TypeScript SDK, REST API, drop-in Web Component, MCP server for AI agents, or native Salesforce External Services.
npm install @auth57labs/sdkTyped client + optional Lit Web Component · Node, Deno, Bun, Edge, browser
Five integration paths
Every path reads from the same verified corpus. Same response shape, same source URLs, same last_verified dates.
npm install auth57-sdk
import { Auth57Client } from 'auth57-sdk';
const c = new Auth57Client({ apiKey });
await c.paLookup({ state: 'CA', program: 'medicaid_ffs', drug: 'biologics' });View on npm →curl https://api.auth57.io/v1/pa-lookup \ ?state=CA&program=medicaid_ffs&drug=glp_1_agonists \ -H "x-api-key: $AUTH57_KEY"Interactive reference →
<script type="module" src="https://auth57labs.com/embed/pa-lookup.js"></script> <auth57-pa-lookup api-key="YOUR_KEY" state="CA" program="medicaid_ffs" service="diagnostic_imaging" auto-query></auth57-pa-lookup>See it live →
// claude_desktop_config.json
{
"mcpServers": {
"auth57": {
"command": "npx",
"args": ["@auth57/mcp"],
"env": { "AUTH57_API_KEY": "..." }
}
}
}MCP product page →Setup → External Services → New from OpenAPI Schema URL: https://auth57labs.com/openapi.json Named Credential: Auth57 URL: https://auth57.io/api Header: x-api-key = YOUR_KEY // paLookup, compare, statesSummary — callable from Flow10-minute Salesforce guide →
Under the hood
What's actually running behind every API call.
Auth + rate limits
One header. Transparent counters. 429s come with Retry-After.
Response shape
Identical across SDK, REST, Web Component, and MCP. Verdict, confidence, source URL, next_steps.
// GET /api/pa-lookup?state=CA&program=medicaid_ffs&service=diagnostic_imaging
{
"state": "CA",
"program": "medicaid_ffs",
"query": { "service_category": "diagnostic_imaging" },
"result": {
"pa_required": true,
"pa_type": "conditional",
"confidence": 0.75,
"notes": "Advanced imaging requires PA under Medi-Cal FFS. DHCS criteria apply.",
"source_url": "https://www.dhcs.ca.gov/provgovpart/Pages/TAR.aspx",
"last_verified": "2026-04-23",
"gold_card_exempt": false,
"gold_card_notes": null
},
"next_steps": [
{ "step": 1, "title": "Gather clinical documentation", "items": [ ... ] },
{ "step": 2, "title": "Submit PA request", "items": ["Submit to: DHCS"] },
{ "step": 3, "title": "Expected turnaround", "items": ["Standard: 14 days", "Expedited: 72 hours"] }
],
"served_from": "static",
"timestamp": "2026-04-24T14:22:58.442Z"
}Everything in one place
One click to every piece of the developer surface.
Stop scraping payer sites.
Build on verified data.
Grab an API key and you're 30 seconds from a working lookup. Or book 15 minutes for a 30-day demo key tuned to your use case.