AI
Pass

AI Name Explorer — Agent Skill

AI Name Explorer — Agent Skill

Explore name meanings, origins, and history via the AI Pass API.

Setup

  1. Create account at aipass.one
  2. Developer Dashboard → API Keys
  3. Set $AIPASS_API_KEY

Related

Skill File

---
name: ai-name-explorer
description: Explore name meanings, origins, and cultural significance using AI Pass API.
version: 1.0.0
---

# AI Name Explorer Skill

## Auth
- **API Key:** `$AIPASS_API_KEY`
- Get your key: https://aipass.one/panel/developer.html → API Keys

## Explore a Name

```bash
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": "Provide detailed info about the given name: meaning, origin, etymology, cultural significance, famous bearers, popularity, and variations."},
      {"role": "user", "content": "Tell me about the name Alexander"}
    ]
  }'
```

**Response:** `response.choices[0].message.content`

## Python

```python
import requests, os

def explore_name(name):
    r = requests.post(
        "https://aipass.one/apikey/v1/chat/completions",
        headers={
            "Authorization": f"Bearer {os.environ['AIPASS_API_KEY']}",
            "Content-Type": "application/json"
        },
        json={
            "model": "gpt-5-mini",
            "messages": [
                {"role": "system", "content": "Name expert. Provide: meaning, origin, etymology, cultural significance, famous bearers, popularity, variations."},
                {"role": "user", "content": f"Tell me about the name: {name}"}
            ]
        }
    )
    return r.json()["choices"][0]["message"]["content"]
```

## Cost
- ~$0.001 per lookup
- $1 free credit on signup
Download Skill File