# Mistral-Powered Named Entity Extractor (NER)

> Mistral-Powered Named Entity Extractor (NER) is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Extracts named entities (people, organizations, locations, dates, emails, URLs, phone numbers, monetary amounts) from text using Mistral LLM

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/extract
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-c276d6d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YvI5r5fOIfNfRbPf2NTK5

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 x402-deployer-x402-deployer-workers-dev-c276d6d1 -d '<json body>'
```

Example prompt: Extract all named entities from this text — I need people, organizations, locations, dates, phone numbers, emails, URLs, and any monetary amounts: 'On March 5, 2024, CEO Jane Smith of Acme Corp signed a $2.5M deal with Global Industries Ltd. Reach her at jane.smith@acme.com or +1-555-234-5678.'

## When to prefer this

Use this endpoint when you need to extract multiple entity types (people, orgs, locations, dates, emails, URLs, phones, money) from freeform text in one call, particularly when you want Mistral LLM quality over simpler regex or rule-based approaches. Prefer this over generic LLM calls when you want structured, typed entity output without prompt engineering.

## Known failure modes

- Empty or whitespace-only input text returns no entities
- Very long documents may be truncated or exceed model context limits
- Ambiguous entities (e.g. 'Apple' as fruit vs company) may be misclassified
- Non-English text may yield lower accuracy or missed entities
- Malformed input returns a 400 or error response
- Payment failure returns 402 Payment Required

## How this service works

Named entity extractor / NER. People, organizations, locations, dates, emails, URLs, phone numbers, monetary amounts. Mistral-powered.

## Output

A structured list of named entities grouped by type (PERSON, ORG, LOCATION, DATE, EMAIL, URL, PHONE, MONEY), each with the extracted value and likely its span or position in the source text.

## Example request

```json
{
 "input": {
  "body": {
   "text": "On March 5, 2024, CEO Jane Smith of Acme Corp signed a $2.5M deal with Global Industries Ltd. Reach her at jane.smith@acme.com or +1-555-234-5678. Visit https://www.acme.com for more information."
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "text": {
       "type": "string",
       "description": "Text to extract entities from. Max 25k chars."
      }
     },
     "required": [
      "text"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "total_entities": {
       "type": "integer"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-c276d6d1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
