# Bolt NPM Package Lookup

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

Fetches metadata and information for a given NPM package by name

## Facts

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

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-256d611d -d '<json body>'
```

Example prompt: Can you look up the NPM package 'lodash' and tell me what it does, its current version, and who maintains it?

## When to prefer this

Use this endpoint when you need to quickly retrieve NPM package metadata (version, description, maintainers, dependencies) without directly querying the npm registry yourself, and you are already paying per-request via x402/USDC. Best for AI agents that need on-demand package info as part of a larger workflow.

## Known failure modes

- Package not found on npm registry — returns success: false or empty data
- Invalid or malformed package name input — may return error or empty response
- Network or upstream npm registry unavailability — service call fails
- Typo in package name returns wrong or no results

## 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 metadata about the requested NPM package, such as version, description, author, dependencies, and other registry information.

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