# Shipping Container Tracker

> Shipping Container Tracker is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-15).

Tracks shipping containers by ISO 6346 number, validates format, detects carrier, and returns current tracking status.

## Facts

- Endpoint: GET https://api.strale.io/x402/container-track
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-561b929c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fuF4ImExq6OjmsXhZ0dqm

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 api-strale-io-561b929c
```

Example prompt: Can you track container MAEU1234567 for me and tell me its current status and which carrier it belongs to?

## When to prefer this

Use this endpoint when you need to look up the real-time or current tracking status of a shipping container using its ISO 6346 number. Ideal for logistics automation, freight monitoring, or supply chain visibility tasks where a container number is known.

## Known failure modes

- Invalid ISO 6346 container number format returns validation error
- Container number not found in carrier systems returns 404 or empty status
- Unsupported or unrecognized carrier returns limited tracking data
- Missing required container_number query param returns 400 bad request
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Track shipping containers by ISO 6346 number. Validates format, detects carrier, provides tracking status.

## Output

Returns tracking status for the container, carrier identification, validation of the ISO 6346 format, and shipment location or movement details.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "carrier": "Maersk",
   "container_number": "MAEU1234567"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "container_number"
 ],
 "properties": {
  "carrier": {
   "type": "string"
  },
  "container_number": {
   "type": "string",
   "description": "Container number (e.g. MAEU1234567)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "events": {
  "type": "array"
 },
 "status": {
  "type": "string"
 },
 "carrier": {
  "type": "string"
 },
 "valid_format": {
  "type": "boolean"
 },
 "container_number": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-561b929c/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)
