# AutoScrape FDA 510(k) Clearances API

> AutoScrape FDA 510(k) Clearances API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Search and retrieve FDA 510(k) medical device clearance records by device name, applicant, product code, or date range

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/fda-510k-clearances
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-fda-510-k-clearances-api-c4de1afb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PNAFbGahm7iTuTKpJ9I5M

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 autoscrape-fda-510-k-clearances-api-c4de1afb
```

Example prompt: Can you search the FDA 510(k) clearance database for Medtronic devices named something like 'StealthStation', cleared between 2022-01-01 and 2024-01-01, and give me up to 5 results?

## When to prefer this

Choose this endpoint when you need programmatic, structured access to FDA 510(k) clearance records without managing API keys or scraping the FDA website directly. It is ideal for agent workflows that need to verify device clearance status, conduct competitive device research, or validate regulatory compliance by manufacturer or product code. Prefer this over direct FDA database queries when cost-per-call economics ($0.01 USDC) are acceptable and you need clean JSON output in a pipeline.

## Known failure modes

- No matching records found returns count 0 and empty results array
- Invalid date format (not YYYY-MM-DD) may return an error or empty results
- maxResults capped at 10 regardless of how large a value is requested
- Very broad queries with no filters may return noisy or truncated results
- Service unavailability on the Vercel host may return 5xx errors

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count of matching clearances and a results array, each entry containing the K-number, applicant name, device name, and decision date. Also includes a setupStatus field indicating whether records were found.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "kNumber": "K231976",
    "applicant": "Medtronic Navigation, Inc.",
    "deviceName": "StealthStation Cranial Software, v3.1.5",
    "decisionDate": "2023-10-19"
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-fda-510-k-clearances-api-c4de1afb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
