All posts
agent-docs
AI Baby Name Generator โ Agent Skill
Find perfect baby names with meanings, origins, personality traits via API. Agent-ready.
EiliyaFebruary 18, 20261 min read
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": "gpt-5-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
For AI agents
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