Developer
conda (conda-forge) package info + maintenance verdict API
Normalized Anaconda.org metadata for a conda package (default channel conda-forge): latest version, license, homepage/repo/docs, version count, build count, last upload date across all build files, and a derived maintenance verdict. Answers 'what is the latest version and license of this conda package?', 'when was this conda-forge feedstock last built?'.
Price$0.01per request
MethodPOST
Route/v1/dev/conda-package
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
devcondaconda-forgepythonanacondapackageregistrymaintenance
API URL
Integration docshttps://x402.hexl.dev/v1/dev/conda-packageExample request
{
"name": "numpy"
}Example response
{
"ecosystem": "conda",
"channel": "conda-forge",
"name": "numpy",
"description": "The fundamental package for scientific computing with Python.",
"latestVersion": "2.5.0rc1",
"license": "BSD-3-Clause",
"homepage": "http://numpy.org/",
"repository": "https://github.com/numpy/numpy",
"documentation": "https://numpy.org/doc/stable/",
"versionCount": 113,
"buildCount": 3691,
"lastPublished": "2026-06-04 06:22:34.400000+00:00",
"maintenance": {
"verdict": "maintained",
"score": 95,
"daysSinceRelease": 1,
"reasons": [
"Released 1d ago (< 6 months) — actively published.",
"113 releases — long publish history."
]
}
}Input schema
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "conda package name, e.g. 'numpy'."
},
"channel": {
"type": "string",
"description": "Anaconda channel (default 'conda-forge')."
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}