ToolAssay

FDA drug labeling sections and FAERS adverse-event aggregates in agent-consumabl

FDA drug labeling sections and FAERS adverse-event aggregates in agent-consumable JSON. POST /v1/fda with a {drug} and get label highlights and adverse-event counts as one JSON object. Deterministic per cached dataset. Pay per request in USDC; no account, no API key.

Answers HTTP 429 without x402 payment termsour last check, 2026-09-24
0 of 1checks answered this week
n/amedian answer time
$0.005listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://agent.pocket.network/v1/fda

CategoryEverything else
Provider hostagent.pocket.network
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days6 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 no x402 terms 429 873 ms

Example input (from the provider)

{
  "body": {
    "drug": ""
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "description": "A drug to look up. On the MCP relay route POST /v1/tool these fields are wrapped under an `arguments` object; the direct route takes them at the top level.",
          "properties": {
            "drug": {
              "description": "Drug name, e.g. aspirin.",
              "type": "string"
            }
          },
          "required": [
            "drug"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "data": {
              "description": "For POST /v1/fda, a JSON object with `label` sections and FAERS adverse-event aggregates. The exact shape is the service's own and is not pinned here; errors return a JSON object with an `error` field, and the GET routes return their own small JSON documents.",
              "type": "object"
            },
            "portal": {
              "properties": {
                "provenance": {
                  "const": "third-party-supplier"
                },
                "schemaCheck": {
                  "enum": [
                    "passed",
                    "undeclared",
                    "unchecked"
                  ]
                },
                "serviceId": {
                  "const": "fda"
                }
              },
              "required": [
                "provenance",
                "serviceId",
                "schemaCheck"
              ],
              "type": "object"
            }
          },
          "required": [
            "portal",
            "data"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON