# Bolt Extract

> Bolt Extract is a paid API for AI agents from bolt.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 input

## Facts

- Endpoint: POST https://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-600ba233
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fSirXKTDWaw-c7ZvjlkDD

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-600ba233 -d '<json body>'
```

Example prompt: Extract all the names, dates, and dollar amounts from this text for me: 'On March 4th, Sarah Johnson signed a contract with Acme Corp for $45,000 to deliver the project by June 15th.'

## When to prefer this

Use this endpoint when you need to extract structured entities or key data points from free-form text and want a pay-per-use model with no subscription. Particularly useful within agent workflows that process variable volumes of text.

## Known failure modes

- Missing required 'text' field returns an error
- Empty or very short text may yield no extracted entities
- Unrecognized entity types in the 'entities' array may be silently ignored
- Malformed request body returns a 4xx error
- Payment failure via x402 prevents 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 'data' field containing the extracted entities and structured information identified in the input text, plus a 'success' boolean indicating whether extraction succeeded.

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