# Toolsmith Medical Device Lookup

> Toolsmith Medical Device Lookup is a paid API for AI agents from toolsmith-api.dassad10.workers.dev, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Looks up FDA medical device information including recalls, 510(k) clearances, classification, and adverse event reports by device name or UDI.

## Facts

- Endpoint: GET https://toolsmith-api.dassad10.workers.dev/t/med/device
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolsmith-medical-device-lookup-6e5d4d66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_azPu25gMY_eJrpo-gg7dD

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 toolsmith-medical-device-lookup-6e5d4d66
```

Example prompt: Can you check the FDA database for the Medtronic MiniMed insulin pump — I want to see if there are any recalls, its classification, and any 510(k) clearances on record?

## When to prefer this

Use this endpoint when you need consolidated FDA regulatory data (recalls, clearances, classification, adverse events) for a specific medical device in a single pay-per-call request with no API key setup. Prefer over direct openFDA API calls when operating as an AI agent that needs keyless, micropayment-based access. Best for compliance checks, due diligence, procurement validation, and patient safety research.

## Known failure modes

- Device not found in FDA database — returns empty arrays
- Invalid or unrecognized UDI format — may return no results
- Ambiguous device name matching multiple products — may return multiple classifications
- FDA database connectivity issue — returns error response
- Missing required query parameter (name or UDI) — returns validation error

## How this service works

Keyless pay-per-call APIs for AI agents: 30 tools across compliance, trade, safety, web and data. Pay per call with USDC on Base via x402. No account, no API key.

## Output

Returns a JSON object containing: an array of recalls associated with the device, classification details (class, device name, regulation number), 510(k) clearance records (K-number, applicant, decision date), and a count of adverse event reports.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "udi": {
       "type": "string",
       "description": "Unique Device Identifier (DI), alternative to name"
      },
      "name": {
       "type": "string",
       "description": "Device, brand or generic name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "recalls": [],
  "classification": [
   {
    "class": "2",
    "deviceName": "Pump, Infusion, Insulin",
    "regulation": "880.5725"
   }
  ],
  "clearances510k": [
   {
    "kNumber": "K123456",
    "applicant": "Example Medical",
    "decisionDate": "2024-05-01"
   }
  ],
  "adverseEventReports": 51234
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolsmith-medical-device-lookup-6e5d4d66/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolsmith-api.dassad10.workers.dev](https://www.zero.xyz/host/toolsmith-api.dassad10.workers.dev/llms.txt)
