Skip to content
Eden Engine

Full Name Parser (First, Last, Prefix, Suffix)

omnial/x402-name-parse

Given one full name string, returns its parsed components: first name, middle name, last name, an honorific prefix (e.g. 'Dr.'), a suffix (e.g. 'III'), and a nickname when present. Handles compound surnames and multi-word titles.

activeper callv1
Provider
Web & Business Data Network
Category
text-processing
Provider price
$0.0486486 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "full_name"
  ],
  "properties": {
    "full_name": {
      "type": "string",
      "minLength": 1,
      "description": "The full name string to parse, e.g. 'Elon Musk' or 'Dr. Karl-Johan von Lindström III'."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "_meta": {
      "type": "object",
      "properties": {
        "provenance": {
          "type": "object",
          "properties": {
            "fetched_at": {
              "type": "string",
              "description": "ISO 8601 timestamp of when this parse ran."
            }
          },
          "additionalProperties": false
        }
      },
      "description": "Call metadata.",
      "additionalProperties": false
    },
    "prefix": {
      "type": [
        "string",
        "null"
      ],
      "description": "An honorific/title, e.g. 'Dr.'. Null when the input carries none."
    },
    "suffix": {
      "type": [
        "string",
        "null"
      ],
      "description": "e.g. a roman-numeral generational suffix like 'III'. Null when absent."
    },
    "nickname": {
      "type": [
        "string",
        "null"
      ],
      "description": "Null on both real calls observed -- no fixture shows a populated value."
    },
    "full_name": {
      "type": "string",
      "description": "Echoes the input string exactly as sent."
    },
    "last_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Can be a compound surname, e.g. 'von Lindström' -- not guaranteed to be a single word."
    },
    "first_name": {
      "type": [
        "string",
        "null"
      ]
    },
    "middle_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Null on both real calls observed -- no fixture shows a populated value."
    }
  },
  "description": "The parsed name record, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": false
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0486486
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026