# Dangerous Goods Classifier

> Dangerous Goods Classifier is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-14).

Classify dangerous goods by UN number or substance name, returning hazard class, packing group, labels, and marine pollutant status.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/dangerous-goods-classify
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dangerous-goods-classifier-e724e485
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5RWP_I_fut9Ea4Z7ioGi9

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 dangerous-goods-classifier-e724e485
```

Example prompt: Can you classify UN1203 (Gasoline) as a dangerous good and tell me its hazard class, packing group, and whether it's a marine pollutant?

## When to prefer this

Use this endpoint when you need rapid, structured dangerous goods classification data for a known substance or UN number — especially for logistics, freight compliance, shipping documentation, or chemical safety workflows. Prefer this over manual lookups or full regulatory databases when speed and structured output matter more than exhaustive coverage.

## Known failure modes

- Substance not found in database (fewer than 200+ substances covered, niche chemicals may be missing)
- Ambiguous substance name matching multiple entries returns multiple results requiring disambiguation
- Invalid or malformed UN number format returns an error
- Substance name typos may return zero matches

## How this service works

Classify dangerous goods by UN number or substance name. Returns hazard class, packing group, labels, marine pollutant status. 200+ substances.

## Output

Returns an array of matching substances with their hazard class, packing group, required labels, marine pollutant status, and the total number of matches found for the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "substance"
 ],
 "properties": {
  "substance": {
   "type": "string",
   "description": "Substance name or UN number (e.g. UN1203, Gasoline)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "error": {
  "type": "string"
 },
 "query": {
  "type": "string"
 },
 "matches": {
  "type": "array"
 },
 "total_matches": {
  "type": "integer"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dangerous-goods-classifier-e724e485/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
