# SiteSignal Public npm Package Health Snapshot

> SiteSignal Public npm Package Health Snapshot is a paid API for AI agents from obtain-incentive-exceptions-speakers.trycloudflare.com, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Fetches current npm registry metadata for a package including release freshness, deprecation status, license, repository, dependencies, maintainers, integrity hashes, and install lifecycle scripts.

## Facts

- Endpoint: GET https://obtain-incentive-exceptions-speakers.trycloudflare.com/x402/npm-package-health
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-public-npm-package-health-snapshot-cc8153a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2D60WymtWPdHEoc2VE-Ve

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 sitesignal-public-npm-package-health-snapshot-cc8153a5
```

Example prompt: Can you pull up the health snapshot for the 'lodash' npm package — I want to know if it's deprecated, how fresh the latest release is, what license it uses, and whether it has any install lifecycle scripts?

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of a public npm package's health metadata — especially deprecation status, license compliance, maintainer info, and lifecycle script risks — without needing to manually parse the npm registry API. Prefer this over raw npm registry calls when you want a normalized, agent-friendly response.

## Known failure modes

- Package not found on npm registry — returns 404 or error object
- Scoped package name malformed (missing @ prefix) — returns validation error
- npm registry temporarily unavailable — returns upstream timeout or 5xx error
- Private or unpublished package requested — returns not found or access denied

## How this service works

Inspect current public npm registry metadata for release freshness, deprecation, license, repository, dependencies, maintainers, integrity, and install lifecycle scripts.

## Output

Returns current npm registry metadata for the requested package including: latest release date and version freshness indicators, deprecation flag, SPDX license identifier, repository link, list of dependencies, maintainer details, package integrity hashes, and presence of preinstall/install/postinstall lifecycle scripts.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "package"
     ],
     "properties": {
      "package": {
       "type": "string",
       "description": "Public scoped or unscoped npm package name."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sitesignal-public-npm-package-health-snapshot-cc8153a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obtain-incentive-exceptions-speakers.trycloudflare.com](https://www.zero.xyz/host/obtain-incentive-exceptions-speakers.trycloudflare.com/llms.txt)
