# Bolt NPM Package Lookup

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

Retrieves metadata and information about an NPM package by name

## Facts

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

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-lookup-6d247a70 -d '<json body>'
```

Example prompt: Can you look up the NPM package details for 'lodash' and tell me the latest version and description?

## When to prefer this

Use this endpoint when you need to programmatically fetch NPM package metadata without setting up your own npm registry client. Ideal for AI agents that need to answer questions about JavaScript packages, check versions, or gather dependency information on demand with a simple pay-per-request model.

## Known failure modes

- Package name not found in npm registry — returns success: false or empty data
- Invalid or malformed package name — request validation error
- npm registry unavailable — upstream timeout or error
- Rate limiting or payment failure — 402 or 429 response

## 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 data object containing NPM package metadata such as version, description, dependencies, author, license, and other registry information, along with a success boolean indicating whether the lookup was successful.

## 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-lookup-6d247a70/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deltadata.orbonomy.xyz](https://www.zero.xyz/host/deltadata.orbonomy.xyz/llms.txt)
