aipass-apilisted
Install: claude install-skill aipass-one/skill
# AI Pass API — Complete Skill
All AI features via `$AIPASS_API_KEY`. No browser, no SDK, no OAuth needed.
> **Wrong skill?** If you're shipping a product where other users sign in (web, mobile, desktop, CLI, ChatGPT App, or multi-tenant service), stop and use `aipass-integration` instead. That flow uses per-user OAuth authorization and bills each user's AI Pass wallet. This skill is for personal, internal, or developer-funded use only.
## Auth
All endpoints: `Authorization: Bearer $AIPASS_API_KEY`
Get your key: https://aipass.one/panel/developer.html → API Keys
## Base URL
`https://aipass.one/v1`
The shared `/v1` resource API selects API-key authentication from the bearer
token. Existing `/apikey/v1` URLs remain supported as compatibility aliases.
## List Available Models
The default response is the OpenAI-compatible `{ "object": "list", "data": [...] }` envelope. Filter by catalog metadata instead of provider-name patterns:
```bash
curl -sS "https://aipass.one/v1/models?type=image&method=image_generation" \
-H "Authorization: Bearer $AIPASS_API_KEY" \
| jq -r '.data[].id'
```
The explicit compatibility query `?detailed=false` returns the historical string array.
---
## Recommended Stable IDs
Confirm each ID through runtime discovery before use.
### Text Generation (Chat Completions)
| Model | Notes |
|-------|-------|
| `gpt-5-nano` | Cheapest, simple tasks |
| `gpt-5-mini` | Good balance, recommended default |
| `gpt-5` | Premium OpenAI |
| `gpt-5.1` | Lat