William Shakespeare said “What’s in a name?” In the world of APIs, this question takes a completely different form. What if you were given the difficult task of taking a list of names and performing operations like splitting them up in first and last names, along with their titles? What if you had to determine what the name is from an email address? Difficult isn’t it? Well not if you use the FullContact API, who updated their Name API with various functions to help you do this.
Our earlier coverage on FullContact showed how you could use their API to enhance and update the address book in your application. Since then FullContact has released enhancements to the Name API and recently announced the Name Parser API that helps you convert unstructured name strings into structured JSON or XML.
Imagine having name with you and not sure what the last name or first name is. The Name Parser API will help you with exactly that. Consider the following query for the name string ‘smith john’:
https://api.fullcontact.com/v2/name/parser.json?q=smith%20john&apiKey=xxx
This would return a response as follows:
{
"status": 200,
"ambiguousName": "John Smith",
"result": {
"givenName": "John",
"familyName": "Smith",
"likelihood": 1
},
"region": "USA"
}
The FullContact Name API also has other interesting functionalities, depending on your task. Keep in mind that the API currently works on the US Census Data.
FullContact also announced recent changes to its pricing. Commercial pricing starts at $99 per month (billable monthly) and a free plan will let you exercise the API before going to a commercial plan. Refer to the pricing page for more details.
Full Contact also has an iPhone App that lets you enhance your address book, in addition to an upcoming Microsoft Outlook FullContact Toolbar and an Application Gallery, that showcases various applications that have used the FullContact API.





©ProgrammableWeb.com 2013. All rights reserved.
Terms of Service | Privacy Policy
One Response to “FullContact API Knows Everything About a Name”
at 9:11 pm
[...] FullContact API Knows Everything About a Name [...]