# Bolt Entity Extractor

> Bolt Entity Extractor is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Extracts named entities and structured data from unstructured text

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/extract
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-entity-extractor-456ea318
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yFQTdrN6i0xigGlsQ0bR_

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-entity-extractor-456ea318 -d '<json body>'
```

Example prompt: Extract all the people, organizations, and dates mentioned in this text: 'On March 5, Elon Musk and Tim Cook met at Apple's Cupertino headquarters to discuss a potential partnership.'

## When to prefer this

Use this endpoint when you need to extract named entities or structured facts from raw unstructured text and want to pay per-request without a subscription. Good for ad-hoc extraction tasks in agent workflows where you can specify which entity types to focus on.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty text string may return empty entity set with success:true
- Unrecognized entity types in the 'entities' array may be silently ignored
- Very long text may exceed processing limits
- Payment failure via x402 returns 402 before processing

## 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 the extracted entities and structured information parsed from the input text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "entities": {
   "type": "array"
  }
 }
}
```

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