# OSF Consumer Protection Search

> OSF Consumer Protection 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-15).

Search across US consumer protection datasets (CFPB complaints, NHTSA vehicle recalls, CPSC product safety recalls, FDA enforcement) by keyword, returning matched records with provenance URLs.

## Facts

- Endpoint: GET https://api.osf-master-server.com/x402/consumer/protection/:query
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/osf-consumer-protection-search-8fd7dffd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zLEjRr9Y_N2RfhL3ML1Zo

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-consumer-protection-search-8fd7dffd
```

Example prompt: Search US consumer protection records for 'Takata airbag recall' — I want to see any NHTSA recalls, CPSC actions, CFPB complaints, or FDA enforcement that mention it, with provenance links.

## When to prefer this

Choose this endpoint when you need a single keyword search across multiple US consumer protection authorities (CFPB, NHTSA, CPSC, FDA) simultaneously, especially for consumer risk assessments, product safety due diligence, compliance screening, or investigative research requiring provenance-stamped public records. Prefer over individual agency APIs when you need cross-domain coverage in one call.

## Known failure modes

- No results found for obscure or misspelled keywords
- Keyword too broad returns noisy or irrelevant records
- Dataset may not reflect the most recent enforcement actions
- Payment failure (402) if USDC balance is insufficient
- Rate limiting or timeout if query hits multiple upstream sources simultaneously

## How this service works

Search US consumer protection data by keyword: financial complaints (CFPB), vehicle recalls (NHTSA), product safety recalls (CPSC), and FDA recall enforcement for drugs, devices, and food (openFDA, full history since 2004). Returns product/company, complaint or recall details, dates, and a provenance URL per match. For consumer risk, product safety, and compliance agents.

## Output

A list of matched records across CFPB, NHTSA, CPSC, and openFDA datasets, each including product/company name, complaint or recall details, relevant dates, and a provenance URL linking back to the original 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): product, company, or issue. E.g. 'airbag recall' or 'mortgage complaint'."
      }
     }
    },
    "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-consumer-protection-search-8fd7dffd/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)
