← Back to Dashboard

LingoPepper API

Automate your domain searches programmatically using the LingoPepper v1 REST API.

POST /api/v1/generate

Generates a batch of 10 highly curated domain name ideas. Costs 1 credit per request.

POST https://lingopepper.com/api/v1/generate

Headers

HeaderValue
AuthorizationBearer <YOUR_API_KEY>
Content-Typeapplication/json

JSON Body

{
"description": "A fast sneaker brand", // required
"style": "abstract", // optional: 'random', 'portmanteaus', 'alliteration', etc.
"keywords": "shoe", // optional: comma separated words
"maxLength": 12, // optional: int max character limit
"creativity": 0.9, // optional: float 0.0-1.0 (higher is more lateral/wild)
"previousDomains": ["fastshoe"] // optional: array of strings to avoid repeating
}

Response

{
"success": true,
"domains": [
"velocis",
"sprintix"
],
"credits_remaining": 999
}