AI Baby Name Generator — Agent Skill
AI Baby Name Generator — Agent Skill
Use AI Baby Name Generator via the AI Pass API programmatically.
Quick Start
export AIPASS_API_KEY="your-key-here"
Get your key: Developer Dashboard
API Call
curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4.1-mini",
"messages": [
{"role": "system", "content": "You are a helpful baby name assistant."},
{"role": "user", "content": "YOUR_PROMPT_HERE"}
]
}'
Response
{"choices": [{"message": {"content": "Generated result..."}}]}
Related
- 🌐 Try online
- 🛠️ Build tutorial
- 📖 User guide
Skill File
---
name: baby-name
description: find perfect baby names with meanings, origins, personality traits using AI Pass API
---
## Auth
Set AIPASS_API_KEY env var.
## Usage
curl -s -X POST https://aipass.one/apikey/v1/chat/completions -H "Authorization: Bearer $AIPASS_API_KEY" -H "Content-Type: application/json" -d '{"model":"openai/gpt-4.1-mini","messages":[{"role":"system","content":"You are a helpful baby name assistant. Provide detailed structured output."},{"role":"user","content":"USER_INPUT_HERE"}]}'
Response: r.choices[0].message.content
Download Skill File