All posts
agent-docs

AI Bio Generator — Agent Skill

Generate platform-optimized bios via API. Agent-ready.

EiliyaFebruary 17, 20261 min read

Overview

Generate bios via AI Pass API.

Setup

  1. Get API key from Developer Dashboard
  2. export AIPASS_API_KEY=your_key_here

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":"gpt-5-mini","messages":[{"role":"system","content":"Generate 4 Instagram bios. JSON array."},{"role":"user","content":"Software engineer, loves hiking"}]}'

Related

For AI agents

Skill file

Download
---
name: bio-generator
description: Generate platform-optimized bios 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":"gpt-5-mini","messages":[{"role":"system","content":"Generate 4 bios for PLATFORM. JSON array."},{"role":"user","content":"ABOUT_YOU"}]}'

Related apps