# OSF Healthcare Records Search

> OSF Healthcare Records Search is a paid API for AI agents from api.osf-master-server.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Search US healthcare public data by keyword across CMS NPPES NPI provider records, NLM RxNorm drug concepts, ClinicalTrials.gov studies, and FDA recall enforcement (openFDA)

## Facts

- Endpoint: GET https://api.osf-master-server.com/x402/healthcare/records/:query
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/osf-healthcare-records-search-17b62423
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zUvKp4Fy8iXzL9RPiSUh8

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability osf-healthcare-records-search-17b62423
```

Example prompt: Can you look up the NPI record and any FDA recall history for semaglutide — I need the RxCUI identifier and provenance links from the CMS and openFDA databases?

## When to prefer this

Use this endpoint when you need to search across US healthcare public datasets — verifying a provider NPI, resolving a drug name to its RxCUI, checking FDA recall enforcement history, or finding clinical trial status — especially when you need provenance-stamped results from authoritative US government sources like CMS, NLM, ClinicalTrials.gov, or openFDA in a single call.

## Known failure modes

- No matches found for the given query keyword — returns empty results array
- Query too vague returns too many low-relevance results
- NPI or NCT ID not found in current CMS or ClinicalTrials.gov snapshot
- openFDA recall records may lag the official FDA enforcement database
- Rate limiting or payment failure returns 402 or 429 error
- Ambiguous drug name resolves to multiple RxCUI candidates

## How this service works

Search US healthcare data by keyword: CMS NPPES NPI provider records, NLM RxNorm drug concepts, ClinicalTrials.gov studies, and FDA recall enforcement for drugs, devices, and food (openFDA, full history since 2004). Verify a provider or NPI, resolve a drug to its RxCUI, check trial status, or check a product for recalls. Returns identifiers, key facts, and a provenance URL per match.

## Output

Returns a list of matched records per data source (CMS NPPES provider records, RxNorm drug concepts, ClinicalTrials.gov studies, FDA recall/enforcement records), each with key identifiers, key facts, and a provenance URL linking back to the authoritative source.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Keyword(s): provider name or NPI, drug name or RxCUI, condition, sponsor, or NCT id. E.g. 'cardiology TX' or 'semaglutide'."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/osf-healthcare-records-search-17b62423/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.osf-master-server.com](https://www.zero.xyz/host/api.osf-master-server.com/llms.txt)
