# Suverse PyPI Package Metadata Lookup

> Suverse PyPI Package Metadata Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Retrieves PyPI package metadata including version, summary, author, license, Python requirements, classifiers, project URLs, and latest release files for a given package name.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-pypi-package
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-pypi-package-metadata-lookup-ae100012
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DdXfXfKTM4eW2ne8Bg16j

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 suverse-pypi-package-metadata-lookup-ae100012 -d '<json body>'
```

Example prompt: Can you look up the PyPI metadata for the 'requests' package — I need its latest version, author, license, and what Python versions it supports?

## When to prefer this

Use this endpoint when you need authoritative PyPI metadata for a specific package by name — particularly version, author, license, Python compatibility, classifiers, and release file listings — without scraping the PyPI website or setting up a PyPI API client. Ideal for automated dependency audits, license compliance checks, and developer tooling agents. Keyless access via x402 micropayment makes it suitable for serverless or agent-driven workflows with no pre-registered credentials.

## Known failure modes

- Package name not found on PyPI — returns error or empty result
- Typo in package name results in no match
- Package exists but has no published releases — metadata may be incomplete
- Rate limiting or upstream PyPI unavailability causes timeout
- Payment not processed — x402 payment required before data is returned

## How this service works

PyPI package metadata: version, summary, author, license, requires-python, classifiers, project URLs and latest-release files. Pass a package name. Keyless.

## Output

Returns structured PyPI package metadata including the current version number, short summary, author name, license type, minimum Python version requirement, trove classifiers, project/homepage URLs, and a list of files in the latest release.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-pypi-package-metadata-lookup-ae100012/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
