# FDA Animal & Veterinary Adverse Event Reports

> FDA Animal & Veterinary Adverse Event Reports is a paid API for AI agents from 2s.io, paid per call via x402, $0.0024/call, status unknown (last checked 2026-09-14).

Retrieves FDA adverse event reports for animals and veterinary drugs, filterable by species, drug name, and reaction type, newest first.

## Facts

- Endpoint: GET https://2s.io/api/gov/fda-animalvet-events
- Price: $0.0024/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-070b75e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_03DgeQ8WqpATWDjPeDMXj

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 2s-io-070b75e2
```

Example prompt: Pull up the latest FDA adverse event reports for dogs that were given Bravecto and showed vomiting reactions — give me up to 50 records.

## When to prefer this

Use this endpoint when you need US FDA-sourced, public-domain veterinary adverse event data filterable by drug, species, or reaction. Prefer it over general web search when you need structured, VeDDRA-coded pharmacovigilance records for veterinary safety research, pet food adverse events, or livestock drug surveillance.

## Known failure modes

- No matching records returned when filters are too narrow or drug/reaction name doesn't match OpenFDA's terminology
- Invalid species name returns empty results or an error
- Limit parameter out of range (must be 1–100) returns a validation error
- OpenFDA upstream downtime causes request failure or timeout
- Drug substring too short (< 2 chars) or too long (> 100 chars) rejected by schema validation

## How this service works

FDA animal and veterinary adverse event reports, newest first. All filters optional. Each record includes AER ID, dates, animal species/gender/breed/age/weight, reactions (VeDDRA-coded), drugs (brand + active ingredients + administration), primary reporter (Veterinarian/Owner/Other). Use cases: veterinary practice safety research, pet food adverse events, livestock drug surveillance. Backed by OpenFDA's /animalandveterinary/event endpoint; public-domain US government records.

## Output

A list of FDA veterinary adverse event records (newest first), each containing the AER ID, report dates, animal details (species, gender, breed, age, weight), VeDDRA-coded reactions, drug information (brand name, active ingredients, administration route), and the primary reporter type (Veterinarian, Owner, or Other).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "drug": "Bravecto",
   "limit": 50,
   "species": "Dog",
   "reaction": "Vomiting"
  }
 }
}
```

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "drug": {
       "type": "string",
       "maxLength": 100,
       "minLength": 2,
       "description": "Drug name substring across brand + active ingredients. Examples: \"Heartgard\", \"Bravecto\", \"Apoquel\"."
      },
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 100,
       "minimum": 1,
       "description": "Max events (1-100). Default 20."
      },
      "species": {
       "type": "string",
       "maxLength": 60,
       "minLength": 2,
       "description": "Animal species. Examples: \"Dog\", \"Cat\", \"Horse\", \"Cattle\", \"Chicken\"."
      },
      "reaction": {
       "type": "string",
       "maxLength": 100,
       "minLength": 2,
       "description": "Reaction (VeDDRA preferred term) substring. Examples: \"Vomiting\", \"Lethargy\", \"Death\"."
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-070b75e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
