# Bolt npm Package Info Lookup

> Bolt npm Package Info Lookup is a paid API for AI agents from bolt.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches metadata and information for a given npm package name

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/npm-package
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-npm-package-info-lookup-0a9de549
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f4krqrWTVEFsnYUgAJ0um

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 bolt-npm-package-info-lookup-0a9de549 -d '<json body>'
```

Example prompt: Can you look up the npm package info for 'lodash' and tell me its latest version, description, and maintainers?

## When to prefer this

Use this endpoint when an agent needs to programmatically retrieve npm package metadata without direct access to the npm CLI or registry API, especially in a pay-per-request serverless context. Prefer this over raw npm registry calls when operating within the Bolt toolkit ecosystem on orbonomy.xyz.

## Known failure modes

- Package name not found in npm registry — returns success: false or empty data
- Invalid or malformed package name — may return error or null data
- Network timeout reaching npm registry upstream — returns failure response
- Private or scoped packages may not be accessible — limited metadata returned

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing npm package metadata such as version, description, dependencies, maintainers, and repository details for the requested package name.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "package"
 ],
 "properties": {
  "package": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-npm-package-info-lookup-0a9de549/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
