# Strale Shipping Cost Estimator

> Strale Shipping Cost Estimator is a paid API for AI agents from api.strale.io, paid per call via x402, $0.162/call, status unknown (last checked 2026-09-14).

Estimates shipping costs for PostNord, DHL, and UPS given origin/destination countries, package weight, and optional service level.

## Facts

- Endpoint: GET https://api.strale.io/x402/shipping-cost-estimate
- Price: $0.162/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-7e39f95c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SMrK0EbZOk3ZjJlHm1kZm

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-7e39f95c
```

Example prompt: How much would it cost to ship a 3.5 kg package from Sweden to Germany using PostNord? Give me an estimate across available service levels.

## When to prefer this

Use this endpoint when you need a quick shipping cost estimate across major carriers (PostNord, DHL, UPS) for a given country-to-country shipment and package weight, especially for Nordic/European logistics contexts. Prefer this over generic shipping APIs when PostNord coverage is important.

## Known failure modes

- Unsupported country codes return an error
- Weight outside carrier limits may return no results
- Invalid or missing required parameters (origin_country, destination_country, weight_kg) return a validation error
- Unknown service level string may be ignored or return an error

## How this service works

Estimate shipping costs for PostNord, DHL, UPS by origin/destination, weight, and service level.

## Output

Returns estimated shipping costs from PostNord, DHL, and/or UPS for the given origin/destination country pair, weight, and optional service level — enabling cost comparison across carriers.

## Example request

```json
{
 "service": "standard",
 "weight_kg": 2.5,
 "origin_country": "SE",
 "destination_country": "DE"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "origin_country",
      "destination_country",
      "weight_kg"
     ],
     "properties": {
      "service": {
       "type": "string"
      },
      "weight_kg": {
       "type": "number"
      },
      "origin_country": {
       "type": "string"
      },
      "destination_country": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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