Goes beyond parsing: generates ready-to-use formal and informal greetings, a display name, and a confidence score — built for mail-merge and 1:1 personalization at scale.
POST /v1/name/normalize · 3 credits/requestParsing a name into fields is only half the job for CRM personalization — the other half is turning those fields into a greeting a human would actually write. Name Intelligence builds on the same parsing engine as Name Parser but goes further: it produces a formal salutation ("Sehr geehrter Herr Dr. Mustermann"), an informal one ("Hallo Max"), a clean display name, and a confidence score with a review flag for names the engine isn't sure about — including detecting when first and last name look swapped.
Generate a correct, personalized salutation for every contact in a newsletter or transactional email send, without hand-reviewing each one.
Pick the formal salutation for invoices and support correspondence, the informal one for marketing emails — both generated from the same input.
Use the confidence score and review flag to route only the uncertain names to a human, instead of manually checking an entire import.
Catch and correct the common CSV-import error where first and last name landed in the wrong column, before it reaches a customer-facing email.
curl -X POST https://api.toolbox-api.net/v1/name/normalize \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "Dr. Max Mustermann", "country": "DE"}'{
"input": "Dr. Max Mustermann",
"displayName": "Dr. Max Mustermann",
"salutationFormal": "Sehr geehrter Herr Dr. Mustermann",
"salutationInformal": "Hallo Max",
"confidence": 0.95,
"reviewFlag": false
}Send a full name and, optionally, a country hint. The engine parses the name (same core as Name Parser), then generates formal and informal salutations plus a display name from the structured result, and returns a confidence score — low-confidence or ambiguous cases (including likely firstname/lastname swaps) are flagged for review rather than guessed at silently.
One API key gets you this and four other APIs, sharing one quota.