Nationalize.io · Example Payload

Single Name Lookup

Single name lookup for 'nguyen'

NationalityName PredictionDemographicsProbabilistic ModelsPeople

Single Name Lookup is an example object payload from Nationalize.io, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionrequestresponse

Example Payload

Raw ↑
{
  "description": "Single name lookup for 'nguyen'",
  "request": {
    "method": "GET",
    "url": "https://api.nationalize.io?name=nguyen&apikey=YOUR_API_KEY"
  },
  "response": {
    "status": 200,
    "body": {
      "name": "nguyen",
      "country": [
        { "country_id": "VN", "probability": 0.561 },
        { "country_id": "US", "probability": 0.035 },
        { "country_id": "AU", "probability": 0.021 },
        { "country_id": "CA", "probability": 0.016 },
        { "country_id": "FR", "probability": 0.012 }
      ],
      "count": 360408
    }
  }
}