เครื่องสร้างชื่อ
สร้างชื่อแบบสุ่มสำหรับตัวละคร โครงการ หรือวัตถุประสงค์ใดๆ
การตั้งค่าผู้สร้าง
ปรับแต่งการสร้างชื่อของคุณ
Generated Names
ยังไม่มีชื่อที่สร้าง กรุณากำหนดค่าก่อนและสร้าง!
ยังไม่มีชื่อที่สร้าง กรุณากำหนดค่าก่อนและสร้าง!
Multiple Categories
Generate names for different purposes including characters, businesses, and projects.
Gender Options
Choose from male, female, or unisex names to fit your specific needs.
Easy Copy
One-click copying for individual names or copy all generated names at once.
API Documentation
Generate random names programmatically
GET
/a/v1/names
Generate random names with various options
Parameters:
•
count
(integer, 1-100): Number of names to generate (default: 1)•
category
(string): first, last, full, business, fantasy (default: full)•
gender
(string): male, female, neutral (default: neutral)•
origin
(string): american, british, spanish, french, etc.Example Request:
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://random-generators.com/a/v1/names?count=3&category=full&gender=female"
"https://random-generators.com/a/v1/names?count=3&category=full&gender=female"
Example Response:
{
"success": true,
"data": [
"Jennifer Smith",
"Sarah Johnson",
"Jessica Williams"
],
"category": "full",
"gender": "female",
"count": 3,
"credits_used": 1
}