POST

Detect named entities (people, organizations, places, dates) in English text. Powered by spaCy

/v1/nlp/entities

Powered by spaCy

Request → Response

Examples from schemas.json.

Requestapplication/json
POST /v1/nlp/entities
Content-Type: application/json

{
  "text": "Hello, world!",
  "lang": "en"
}
Responseapplication/json
HTTP/1.1 200 OK
Content-Type: application/json

// Endpoint-specific body after 402 settlement

Overview

Detect named entities (people, organizations, places, dates) in English text. Powered by spaCy via a Python runner.

Open-source library for natural language processing in Python.

Request schema

Body: JSON · application/json

FieldTypeDescription
textstringrequired
langstringoptional
IMPLEMENTATION
curl -X POST https://api.tools402.dev/v1/nlp/entities \
  -H "Content-Type: application/json" \
  -d '{
  "text": "Hello, world!",
  "lang": "en"
}'

402 payment flow omitted — see Integrations for settlement.