# PyPI Versions List

> PyPI Versions List is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns all released versions of a PyPI package with release dates, yanked flags, counts, and recent release summaries.

## Facts

- Endpoint: GET https://intel.rallylive.ca/dev/pypi-versions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pypi-versions-list-49a7f920
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Al-KIGIp8ovuRYjYkHVKg

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 pypi-versions-list-49a7f920
```

Example prompt: Can you pull the full version history for the 'requests' package on PyPI, including release dates, any yanked versions, and how many releases there have been in the last 90 days?

## When to prefer this

Use this endpoint when you need a complete version history of a PyPI package including release dates and yanked flags, and want pre-computed summaries like recent release counts and first/latest dates — rather than scraping PyPI directly or calling the raw PyPI JSON API yourself.

## Known failure modes

- Package name not found on PyPI — returns error or empty result
- Package name is misspelled or case-sensitive mismatch
- PyPI API temporarily unavailable — upstream timeout
- Private/internal packages not listed on PyPI will not be found

## How this service works

All released versions of a PyPI project with release dates (from the first file upload of each release), yanked flags, total count, first/latest release dates, releases in the last 90 days and the 30 most recent. Python release-cadence helper. $0.01 per project.

## Output

Returns a structured object containing the full list of all released versions with their first-file upload dates and yanked flags, the total version count, the date of the first and latest release, the number of releases in the last 90 days, and a list of the 30 most recent releases.

## 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",
     "properties": {}
    }
   },
   "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/pypi-versions-list-49a7f920/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
