AI
Pass

AI Hashtag Generator Skill for AI Agents

Generate trending, platform-specific hashtags using AI Pass API. This skill is ready to use in any AI agent that can make HTTP requests.

Setup

  1. Create an AI Pass account at aipass.one
  2. Verify your email
  3. Create an API key from Developer Dashboard
  4. Set $AIPASS_API_KEY in your environment

Usage

Generate hashtags for any social media platform:

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": "Generate 20 trending hashtags for Instagram about the given topic. Return ONLY hashtags separated by spaces."},
      {"role": "user", "content": "sunset beach photography"}
    ]
  }'

Supported Platforms

  • Instagram (up to 30 hashtags)
  • Twitter/X (5-10 recommended)
  • TikTok (15-20)
  • LinkedIn (5-8)
  • YouTube (15-20)

Related