# Bolt Extract – Named Entity & Data Extraction

> Bolt Extract – Named Entity & Data Extraction is a paid API for AI agents from v0-bolt.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Extracts structured entities and data from unstructured text using AI processing, returning a structured data object

## Facts

- Endpoint: POST https://v0-bolt.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-extract-named-entity-data-extraction-61fc047e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wzuuoqe-UVhUZvMEF-0L0

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-extract-named-entity-data-extraction-61fc047e -d '<json body>'
```

Example prompt: Extract the people, organizations, and dates from this text: 'On March 5, Elon Musk announced that Tesla would partner with Panasonic to expand battery production in Nevada.'

## When to prefer this

Use this endpoint when you need to extract named entities or structured fields from free-form text and want a pay-per-use AI extraction service with no subscription. Prefer it when you have specific entity types you want to target via the 'entities' parameter, and when you want results as a structured data object rather than raw annotations.

## Known failure modes

- Missing required 'text' field returns a 400 error
- Empty string input may return an empty data object with success:true
- Ambiguous or very short text may yield incomplete extractions
- Unsupported entity types in the 'entities' array may be silently ignored
- Payment failure (402) if USDC balance is insufficient or x402 header is missing

## How this service works

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

## Output

A JSON object with a 'success' boolean and a 'data' object containing the extracted entities and structured information parsed from the input text, keyed by entity type or field name.

## 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-extract-named-entity-data-extraction-61fc047e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
