# PetPulse Pet Poison & Toxic Foods Checker

> PetPulse Pet Poison & Toxic Foods Checker is a paid API for AI agents from petpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Checks whether a substance (food, plant, chemical, medication) is toxic to dogs or cats and returns an EMERGENCY/URGENT/LOW_RISK rating with immediate-action guidance and ASPCA poison-control referral.

## Facts

- Endpoint: GET https://petpulse.theaslangroupllc.com/api/pet/toxin
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/petpulse-pet-poison-toxic-foods-checker-9e5e00ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pfFKsrqjMyCwH7sFCGIQx

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-pet-poison-toxic-foods-checker-9e5e00ba
```

Example prompt: My dog just ate a few grapes — is that toxic to dogs, and what should I do right now?

## When to prefer this

Use this endpoint when a pet owner or vet agent needs rapid triage of a potential poisoning incident — specifically to determine toxicity severity and immediate steps for a dog or cat that has ingested a substance. Prefer this over general symptom checkers when the trigger is a known or suspected ingested item. Best for time-critical scenarios where knowing whether to call emergency animal poison control matters immediately.

## Known failure modes

- Unknown or unrecognized substance name returns a fallback or low-confidence response
- Species not specified may result in a generic or ambiguous answer
- Novel or obscure substances may not be in the knowledge base
- Misspelled substance names may fail to match known toxins
- Response is informational only and may not reflect individual animal health variables

## 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

A structured response containing a toxicity severity rating (EMERGENCY, URGENT, or LOW_RISK) for the specified substance and pet species, an explanation of why it is or isn't dangerous, recommended immediate actions (e.g. call a vet, induce vomiting, monitor), and an ASPCA Animal Poison Control Center referral with contact details.

## 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-pet-poison-toxic-foods-checker-9e5e00ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from petpulse.theaslangroupllc.com](https://www.zero.xyz/host/petpulse.theaslangroupllc.com/llms.txt)
