Skip to content
Eden Engine

Dangerous Goods Classification by Substance or UN Number

omnial/x402-dangerous-goods-classify

Given a substance name or UN number, returns its dangerous-goods classification: hazard class and division, packing group, proper shipping name, hazard labels, special handling provisions, marine-pollutant and limited-quantity status, and an Emergency Response Guidebook guide number. When the substance is not recognized, returns a no-match result with guidance on how to retry instead of an error.

activeper callv1
Provider
Web & Business Data Network
Category
logistics
Provider price
$0.0324324 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "substance"
  ],
  "properties": {
    "substance": {
      "type": "string",
      "description": "Substance name or UN number (e.g. UN1203, Gasoline)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Present only when the submitted substance does not resolve to any known classification; human-readable guidance on how to retry (e.g. try a UN number or a known substance name)."
    },
    "match": {
      "type": "object",
      "properties": {
        "class": {
          "type": "string",
          "description": "Hazard class number, e.g. '3' for flammable liquids."
        },
        "labels": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Hazard label codes to display on packaging, e.g. ['3']."
        },
        "division": {
          "type": "string",
          "description": "Hazard sub-division. Observed as an empty string on the one matched fixture captured, where the class has no further sub-division."
        },
        "erg_guide": {
          "type": "string",
          "description": "Emergency Response Guidebook guide number, e.g. '128'."
        },
        "un_number": {
          "type": "string",
          "description": "e.g. 'UN1203'."
        },
        "packing_group": {
          "type": "string",
          "description": "e.g. 'I', 'II', 'III', indicating packing stringency."
        },
        "limited_quantity": {
          "type": "boolean",
          "description": "Whether the substance qualifies for limited-quantity shipping exceptions."
        },
        "marine_pollutant": {
          "type": "boolean"
        },
        "subsidiary_risks": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Additional hazard classes that apply alongside the primary class. Observed as an empty array on the one matched fixture captured; a populated item's shape is unconfirmed."
        },
        "class_description": {
          "type": "string",
          "description": "Plain-language name of the hazard class."
        },
        "special_provisions": {
          "type": "string",
          "description": "Free-text handling and safety notes, e.g. flash point and vapor-density warnings."
        },
        "proper_shipping_name": {
          "type": "string",
          "description": "The substance's regulatory shipping name, e.g. 'Gasoline / Petrol / Motor spirit'."
        }
      },
      "description": "Present only when the submitted substance resolves to a known dangerous-goods classification. Absent when no match is found (see `error`/`matches`/`total_matches` instead).",
      "additionalProperties": true
    },
    "query": {
      "type": "string",
      "description": "The substance name or UN number exactly as submitted, echoed back."
    },
    "matches": {
      "type": "array",
      "items": {},
      "description": "Present on an unmatched query. Observed as an empty array on the one unmatched fixture captured; a populated item's shape is unconfirmed."
    },
    "total_matches": {
      "type": "number",
      "description": "Count of candidate matches found. Observed 0 on an unmatched query."
    }
  },
  "description": "The dangerous-goods classification result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0324324
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026