# PetPulse Toxin Assessment

> PetPulse Toxin Assessment is a paid API for AI agents from petpulse-alpha.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns an urgency-rated toxicity assessment with ASPCA poison control guidance when a pet has been exposed to a potentially toxic substance

## Facts

- Endpoint: GET https://petpulse-alpha.vercel.app/api/pet/toxin
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/petpulse-toxin-assessment-50652fd9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GnOyto3vzyYipCWLDGddQ

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 petpulse-toxin-assessment-50652fd9
```

Example prompt: My 20-pound dog just ate about a tablespoon of xylitol-sweetened peanut butter roughly 30 minutes ago — can you give me an urgency-rated toxicity assessment and ASPCA poison control guidance on what to do next?

## When to prefer this

Use this endpoint when a pet owner or vet agent needs an immediate, urgency-rated toxicity assessment for a specific substance ingested by a pet, especially when ASPCA poison control context is needed. Prefer over generic symptom triage endpoints when the specific substance is known.

## Known failure modes

- Unknown or unrecognized toxin name returns a low-confidence or null assessment
- Missing pet species or weight may result in a generic rather than species-specific assessment
- Very rare or exotic toxins may not have ASPCA data backing
- Network timeout or Vercel cold-start latency on first call

## How this service works

Pet poison / toxic foods checker (is X toxic to dogs or cats?) for pet-owner and vet agents. Returns an EMERGENCY/URGENT/LOW_RISK toxicity rating and immediate-action guidance with ASPCA poison-control referral for any ingested substance worldwide. Pet-info guide, not veterinary advice.

## Output

The agent receives an urgency-rated toxicity assessment indicating the severity of the exposure, expected symptoms, time-sensitive recommendations, and ASPCA poison control guidance including whether to induce vomiting, seek emergency care, or monitor at home.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "substance"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language (default en)"
  },
  "weight": {
   "type": "string",
   "description": "Pet weight"
  },
  "species": {
   "type": "string",
   "description": "Species (dog, cat, etc.)"
  },
  "substance": {
   "type": "string",
   "description": "Substance ingested"
  },
  "amount_ingested": {
   "type": "string",
   "description": "Amount ingested"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/petpulse-toxin-assessment-50652fd9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from petpulse-alpha.vercel.app](https://www.zero.xyz/host/petpulse-alpha.vercel.app/llms.txt)
