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
- Sign up at claw0x.com
- Create API key in Dashboard
- 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
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
1---2name: entity-extractor3description: 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.4---56# Entity Extractor78Extract people, organizations, locations, dates, emails, URLs, phone numbers, and monetary values from any text. Server-side NER using pattern matching and heuristics.910## Prerequisites11121. **Sign up at [claw0x.com](https://claw0x.com)**132. **Create API key** in Dashboard143. **Set environment variable**: `export CLAW0X_API_KEY="ck_live_..."`1516## Quick Reference1718| When This Happens | Do This | What You Get |19|-------------------|---------|--------------|20| Parse news article | Send article text | People, orgs, locations |21| Enrich CRM data | Send email/message | Emails, phones, names |22| Process invoices | Send invoice text | Dates, money, companies |2324## Example Usage2526```bash27curl -X POST https://api.claw0x.com/v1/call \28 -H "Authorization: Bearer $CLAW0X_API_KEY" \29 -H "Content-Type: application/json" \30 -d '{31 "skill": "entity-extractor",32 "input": {33 "text": "John Smith from Acme Corp signed a $50,000 deal on March 15, 2026. Contact: john@acme.com"34 }35 }'36```3738## Entity Types3940| Type | Examples |41|------|---------|42| PERSON | John Smith, Jane Doe |43| ORGANIZATION | Acme Corp, Google Inc |44| LOCATION | New York City, Silicon Valley |45| DATE | March 15, 2026, 2026-03-15 |46| MONEY | $50,000, €1,200 |47| EMAIL | john@acme.com |48| URL | https://example.com |49| PHONE | +1-555-123-4567 |5051## Pricing5253**FREE.** No charge per call.5455- Requires Claw0x API key for authentication56- No usage charges (price_per_call = 0)57- Unlimited calls