# Orbonomy LLM Field Extractor

> Orbonomy LLM Field Extractor is a paid API for AI agents from backup-v2api.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Extracts specified structured fields from free-form text using LLM processing, returning results in a requested format

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/llm/extract
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-field-extractor-bfd8484b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MBCPFCSAOGwxG4syf8lS-

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 orbonomy-llm-field-extractor-bfd8484b -d '<json body>'
```

Example prompt: Extract the fields 'company_name', 'founding_year', and 'headquarters_city' from this text in JSON format: 'Acme Corp was founded in 1998 and is headquartered in Austin, Texas. They specialize in manufacturing industrial widgets.'

## When to prefer this

Use this endpoint when you need to extract specific named fields from unstructured or semi-structured text using LLM intelligence, especially when the fields are not reliably parseable by regex or rules. Prefer this over general NLP pipelines when you need flexible field specification at call time and pay-per-use pricing.

## Known failure modes

- Missing required fields (text, fields array, or format) returns a 400 error
- Ambiguous or unrecognizable field names may result in empty or null values
- Very long text inputs may time out or be truncated
- Invalid format specifier may cause parsing errors
- LLM hallucination may result in incorrect extractions for fields not clearly present in the text
- Payment failure via x402 protocol returns 402 Payment Required

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a 'success' boolean and the extracted field values mapped to the requested field names in the specified output format (e.g. JSON or CSV).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-llm-field-extractor-bfd8484b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from backup-v2api.orbonomy.xyz](https://www.zero.xyz/host/backup-v2api.orbonomy.xyz/llms.txt)
