ToolAssay

Berechnet Entfernung und Fahrzeit zwischen bis zu 25 Punkten, wahlweise als voll

Berechnet Entfernung und Fahrzeit zwischen bis zu 25 Punkten, wahlweise als volle Matrix oder als Start-Ziel-Kreuz. Nimmt Koordinaten oder Anschriften und geokodiert sie selbst. Nutzt freie Streckendaten auf Basis von OpenStreetMap fuer Auto, Rad und Fussweg und faellt bei Ausfall nachvollziehbar auf eine Luftlinienschaetzung mit Umwegfaktor zurueck.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1007 msmedian answer time
$0.004listed price per call
$0.004price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://tools.halowerk.com/v1/route/matrix

CategoryEverything else
Provider hosttools.halowerk.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days2 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.004 1007 ms

Example input (from the provider)

{
  "body": {
    "mode": "driving",
    "points": [
      "Gronau, Westfalen",
      "M\u00fcnster, Deutschland",
      {
        "label": "Lager Ost",
        "lat": 51.9607,
        "lon": 7.6261
      }
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "destinations": {
              "description": "Alternativ: Zielpunkte",
              "items": {
                "type": [
                  "string",
                  "object"
                ]
              },
              "maxItems": 25,
              "type": "array"
            },
            "mode": {
              "default": "driving",
              "enum": [
                "driving",
                "walking",
                "cycling"
              ],
              "type": "string"
            },
            "origins": {
              "description": "Alternativ: Startpunkte",
              "items": {
                "type": [
                  "string",
                  "object"
                ]
              },
              "maxItems": 25,
              "type": "array"
            },
            "points": {
              "description": "Punkte fuer die volle Matrix, als Text oder als Objekt mit lat und lon",
              "items": {
                "type": [
                  "string",
                  "object"
                ]
              },
              "maxItems": 25,
              "type": "array"
            }
          },
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON