# Entity Extractor

> Extract named entities from text: people, organizations, locations, dates, emails, URLs, phone numbers, and monetary values. Use when agents need to parse unstructured text into structured data for CRM enrichment, news analysis, or document processing.

- Skill: `kennyzir/entity-extractor` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add kennyzir/entity-extractor`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kennyzir/entity-extractor/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: kennyzir (https://skillmd.com/u/kennyzir)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/kennyzir/entity-extractor

---


# Entity Extractor

Extract people, organizations, locations, dates, emails, URLs, phone numbers, and monetary values from any text. Server-side NER using pattern matching and heuristics.

## Prerequisites

1. **Sign up at [claw0x.com](https://claw0x.com)**
2. **Create API key** in Dashboard
3. **Set environment variable**: `export CLAW0X_API_KEY="ck_live_..."`

## Quick Reference

| When This Happens | Do This | What You Get |
|-------------------|---------|--------------|
| Parse news article | Send article text | People, orgs, locations |
| Enrich CRM data | Send email/message | Emails, phones, names |
| Process invoices | Send invoice text | Dates, money, companies |

## Example Usage

```bash
curl -X POST https://api.claw0x.com/v1/call \
  -H "Authorization: Bearer $CLAW0X_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "skill": "entity-extractor",
    "input": {
      "text": "John Smith from Acme Corp signed a $50,000 deal on March 15, 2026. Contact: john@acme.com"
    }
  }'
```

## Entity Types

| Type | Examples |
|------|---------|
| PERSON | John Smith, Jane Doe |
| ORGANIZATION | Acme Corp, Google Inc |
| LOCATION | New York City, Silicon Valley |
| DATE | March 15, 2026, 2026-03-15 |
| MONEY | $50,000, €1,200 |
| EMAIL | john@acme.com |
| URL | https://example.com |
| PHONE | +1-555-123-4567 |

## Pricing

**FREE.** No charge per call.

- Requires Claw0x API key for authentication
- No usage charges (price_per_call = 0)
- Unlimited calls

