# Bolt Data Extractor

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

Extracts structured entities and data from raw text using AI processing

## Facts

- Endpoint: POST https://deltadata.orbonomy.xyz/api/extract
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-data-extractor-9af92362
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pSZaBy9AFaK0rSRkKOpIB

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-data-extractor-9af92362 -d '<json body>'
```

Example prompt: Extract all the named entities from this text — people, organizations, and dates — and return them as structured data: 'On March 5, Elon Musk announced that Tesla would partner with OpenAI to develop new autonomous systems in San Francisco.'

## When to prefer this

Choose this endpoint when you need to extract structured entities or data points from unstructured text and want a pay-per-call model via USDC. Useful when you don't want to manage an NLP pipeline yourself and need quick entity extraction at low per-call cost.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty text string may return empty data object
- Very long text may time out or be truncated
- Unrecognized entity types in 'entities' array may be ignored or cause errors
- Network or payment failure returns 402 or 5xx error

## 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-data-extractor-9af92362/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)
