Have a project in mind that you cant find a good and easy to market name for? This API endpoint will provide you with a wide range of suggestions for project, brand or business names that you can pick from.
2 token/credit per request
> POST https://api.jsonrepo.com/v1/branding/ai_brand_generator
Field | Description |
---|---|
X-API-Key | Required Your API Key |
Field | Type | Description |
---|---|---|
description | String | Required the concept description for which the recommendations will be generatedFormat: English alphanumeric stringLength: 20 <= length <= 120 |
limit | Integer | Optional The number of maximum recommendations to be generated by our AIDefault: 10 .Range: 1 <= limit <= 15 |
A successful request will result in a populated payload
field with the expected output. Along with the recommendations we will generate a readability
and memorability
score based on linguistic markers for each of the recommended domain names.
Response Time:
As you are probably well aware, AI output is bound by the efficiency of the model and the prompt enabling it. The bigger your
limit
is, the longer the request will take to process. Please be patient as processing the information could sometimes take between 1 and 5 seconds.
Output Duplication:
AIs are notorious for their heuristic outputs, after all they are heuristic output machines and do not always satisfy the prompts given deterministically. For that reason, it is important to keep in mind that subsequent requests with the same input may in some cases generate similar outputs.
// Generate a set of brand name for 'SaaS service that helps automate invoices'
curl -X POST https://api.jsonrepo.com/v1/branding/ai_brand_generator \
-H "X-API-Key: {YOUR_API_KEY_HERE}" \
--data-urlencode "description=SaaS service that helps automate invoices" \
--data-urlencode "limit=5"
// Server Response
{
"http_code": 200,
"http_message": "Ok",
"timestamp": 1730170229,
"message": "Successful execution.",
"payload": {
"brands": [
{
"brand": "Bill Bot",
"length": 13,
"readability": 82,
"memorability": 72
},
{
"brand": "Invoice Pro",
"length": 11,
"readability": 87,
"memorability": 80
},
{
"brand": "Pay Genie",
"length": 9,
"readability": 92,
"memorability": 88
},
{
"brand": "Easy Invoice",
"length": 12,
"readability": 88,
"memorability": 82
},
{
"brand": "Auto Payer",
"length": 10,
"readability": 89,
"memorability": 82
}
]
}
}
A failed request will result in an error output as detailed in Error Rules. If the endpoint validation fails due to missing, badly formatted or invalid parameters, the endpoint will return HTTP code 400
along with a message
detailing the error.
// Request without `description` field
{
"http_code": 400,
"http_message": "Bad Request",
"timestamp": 1730170296,
"message": "'description' parameter must be provided as an alphanumeric string of min length 20 and max length 120.",
"payload": []
}