Full abandonment report: score breakdown, raw registry facts, GitHub facts, version histor
Full abandonment report: score breakdown, raw registry facts, GitHub facts, version history, support and issue stats, and a recommendation.
100000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-12
updated
Provider
packages.cfsoft.us · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xCa28eb92657F8a81aFb5493b3a04A740B204d816",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"ecosystem": "npm",
"name": "express"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-09-11T07:36:46.761Z",
"ecosystem": "npm",
"exists": true,
"last_release": {
"date": "2020-02-11T16:35:36.122Z",
"version": "2.88.2"
},
"months_since_update": 78,
"name": "request",
"recommendation": "…",
"registry": {},
"score": 100,
"score_breakdown": [],
"signals": [
"deprecated on npm: \"request has been deprecated, see https://github.com/request/request/issues/3142\"",
"last update 78 months ago (2020-02-11, 2.88.2)",
"50,778,952 downloads last month"
],
"status": "deprecated"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"ecosystem": {
"enum": [
"wordpress",
"npm",
"pypi"
],
"type": "string"
},
"name": {
"description": "Package name, PyPI project, or WordPress.org plugin slug",
"type": "string"
}
},
"required": [
"ecosystem",
"name"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://packages.cfsoft.us/v1/report" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://packages.cfsoft.us/v1/report");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://packages.cfsoft.us/v1/report")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7020.json, and this resource appears in /discovery/resources and /discovery/search.