Trained and inspired by ~1 million company names and descriptions
Built with the most recent natural language processing (NLP)
algorithmsDeep analysis of user’s input to generate right names
No simple hand-crafted algorithms nor rules such as word concatenation or prefix/suffix
Suggesting high quality, catchy, informative, and creative names
Two inputs along with the API call should be provided:
"text": user's input keywords describing the business
"weight": if it is set to 1, the quality scores of the generated names are also returned after the API call. Otherwise (i.e., set "weight" to 0), the names are returned without their corresponding quality score.
{ "text" : "string" , "weight" : "1" }
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://b2b.deepnamer.com?api_token=token',
'headers': {
},
body: "{ "text" : "string" , "weight" : "1" }"
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
{ "text" : "hologram cloud display network holographic" , "weight" : "1" }