AI-package release velocity
AI-package release velocity. Per-package releases_24h / releases_7d / releases_30d, latest bump classification (major/minor/patch/prerelease, pre-1.0 minor counts as major per semver), is_breaking_recent flag (major bump within 30 days). Notable movers: recent_major_bumps, most_releases_7d, fastest_cadence_30d. Filter by ecosystem (PyPI/npm), category (llm-sdk, agent-framework, etc), or package substring. The "what AI deps just changed and is it breaking" call.
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
GET https://tensorfeed.ai/api/premium/packages/releases/velocity
| Category | Everything else |
|---|---|
| Provider host | tensorfeed.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 694 ms |
Example input (from the provider)
{
"method": "GET",
"queryFields": {
"category": {
"example": "agent-framework",
"type": "string"
},
"ecosystem": {
"example": "PyPI",
"type": "string"
},
"min_releases_7d": {
"example": 1,
"type": "integer"
}
},
"queryParams": {
"category": "agent-framework",
"ecosystem": "PyPI",
"min_releases_7d": 1
},
"type": "http"
}
Promised output schema (from the provider)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"category": {
"description": "Case-insensitive substring match against curated category (llm-sdk, agent-framework, rag, ...).",
"type": "string"
},
"ecosystem": {
"enum": [
"PyPI",
"npm"
],
"type": "string"
},
"min_releases_7d": {
"description": "Minimum releases-in-window for the headline rows array. Default 1.",
"maximum": 100,
"minimum": 0,
"type": "integer"
},
"package": {
"description": "Case-insensitive substring match against package name.",
"type": "string"
}
},
"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"
}