ToolAssay

Returns the full version history of a package from a single normalised schema th

Returns the full version history of a package from a single normalised schema that covers seven ecosystems. Versions are ordered by semantic version, not alphabetically and not in registry order, so 1.10.0 sorts after 1.9.0 — the mistake that quietly breaks naive comparisons. For each version you get the publication timestamp, whether it is the registry default, whether it is deprecated and the deprecation reason as the registry states it.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
878 msmedian answer time
$0.003listed price per call
$0.003price 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://paket.halowerk.com/v1/package-versions

CategoryCompany and compliance
Provider hostpaket.halowerk.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.003 878 ms

Example input (from the provider)

{
  "body": {
    "include_prereleases": true,
    "limit": 200,
    "name": "express",
    "system": "npm"
  },
  "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": {
          "additionalProperties": false,
          "properties": {
            "include_prereleases": {
              "default": true,
              "description": "Whether pre-release versions appear in the list. They are counted either way.",
              "type": "boolean"
            },
            "limit": {
              "default": 200,
              "description": "How many versions to return, newest first.",
              "maximum": 500,
              "minimum": 1,
              "type": "integer"
            },
            "name": {
              "description": "Package name. Maven uses groupId:artifactId, Go uses the module path.",
              "maxLength": 300,
              "minLength": 1,
              "type": "string"
            },
            "system": {
              "description": "The package ecosystem.",
              "enum": [
                "npm",
                "pypi",
                "maven",
                "go",
                "cargo",
                "nuget",
                "rubygems"
              ],
              "type": "string"
            }
          },
          "required": [
            "system",
            "name"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON