Heuristic analysis of full person names — splits first name, last name, title, particles and suffixes. Supports DE/NL/FR/ES/IE/GB naming conventions.
GET /v1/name-parser?name=... · 1 credit/requestLegacy CRM exports and CSV imports routinely store a person's full name as one free-text field — sometimes "Firstname Lastname", sometimes "Lastname, Firstname", sometimes with an academic title or a nobility particle mixed in. The Name Parser API turns that single string into structured fields, recognizing the naming conventions of ten countries so "Prof. Dr. Anna-Lena von Müller" comes back as title, first name, particle and last name instead of one undifferentiated blob.
Split a single free-text "full name" column from an old export into the structured first-name/last-name fields your current CRM requires.
Normalize mixed "Lastname, Firstname" and "Firstname Lastname" rows in the same list into one consistent structure.
Feed clean, structured first/last names into a mail-merge template instead of hand-editing edge cases with titles or particles.
Compare contacts on structured last name rather than a raw string, so title or particle formatting differences no longer block a dedup match.
curl "https://api.toolbox-api.net/v1/name-parser?name=Prof.%20Dr.%20Anna-Lena%20von%20M%C3%BCller" \
-H "Authorization: Bearer $API_KEY"{
"input": "Prof. Dr. Anna-Lena von Müller",
"title": "Prof. Dr.",
"firstName": "Anna-Lena",
"particle": "von",
"lastName": "Müller"
}Send a full name as free text. The parser applies country-aware heuristics — recognizing academic titles, nobility particles (von, van der, de la…), Irish/Scottish prefixes, composite first names, and the "Lastname, Firstname" convention — and returns the individual fields it identified.
One API key gets you this and four other APIs, sharing one quota.