ToolAssay

Takes a file digest and answers which released package version it is

Takes a file digest and answers which released package version it is. Useful for an artefact found in a container layer, a build directory or an attachment with no metadata attached. Hex and base64 input are both accepted and normalised, the digest length is checked against the declared algorithm before anything is fetched, and the response names every matching package version, since one artefact can be published under more than one coordinate.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1337 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/artifact-hash

CategoryEverything else
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 1337 ms

Example input (from the provider)

{
  "body": {
    "algorithm": "SHA1",
    "hash": "3fabe08296e930c796c19e3c516979386ba9fd59"
  },
  "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": {
            "algorithm": {
              "default": "SHA1",
              "description": "Digest algorithm. SHA1 is what most registries publish for archives.",
              "enum": [
                "SHA1",
                "SHA256",
                "SHA512",
                "MD5"
              ],
              "type": "string"
            },
            "hash": {
              "description": "The digest, hex or base64.",
              "maxLength": 200,
              "minLength": 16,
              "type": "string"
            }
          },
          "required": [
            "hash"
          ],
          "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