# openFDA Tobacco Problem Reports Search

> openFDA Tobacco Problem Reports Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-16).

Search the FDA's public tobacco problem reports dataset by expression and return structured matching records

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-openfda-tobacco-problem
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openfda-tobacco-problem-reports-search-0eea360d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X3QOAsbDNMFm3PkVAzZQw

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 openfda-tobacco-problem-reports-search-0eea360d -d '<json body>'
```

Example prompt: Search the openFDA tobacco problem reports for all records mentioning 'electronic cigarette' battery issues and give me the structured report details.

## When to prefer this

Use this endpoint when you need to query FDA tobacco problem reports without obtaining your own openFDA API key. It is ideal for AI agents in pharma, device safety, or public health research that need structured adverse event data on tobacco products on demand. Prefer it over direct openFDA API calls when you want a keyless, pay-per-call access pattern via x402.

## Known failure modes

- Invalid or malformed search expression returns an error or empty result set
- No matching records found for the given query returns an empty array
- Upstream openFDA API unavailability causes a service error or timeout
- Overly broad search expressions may return truncated or paginated results
- Malformed POST body or missing required fields returns a 400-level error

## How this service works

Query the openFDA Tobacco Problem Reports dataset by search expression, no key, US FDA public data. Returns matching records with structured fields. For AI agents in pharma, device, and safety research.

## Output

Returns an array of matching tobacco problem report records from the openFDA dataset, each with structured fields such as product name, manufacturer, problem description, date of report, product type, and other FDA-defined metadata fields relevant to the tobacco adverse event.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/openfda-tobacco-problem-reports-search-0eea360d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
