Tools

Hashtag Checker

Check Instagram hashtags for bans and restrictions before posting

Check Instagram hashtags for bans

Check if Instagram hashtags are banned, restricted, or safe to use.

Rate Limits: Build (50/day), Accelerate (500/day), Unlimited (unlimited)

POST
/v1/tools/instagram/hashtag-checker
AuthorizationBearer <token>

API key authentication - use your Late API key as a Bearer token

In: header

hashtagsarray<string>
Itemsitems <= 20

Response Body

application/json

curl -X POST "https://getlate.dev/api/v1/tools/instagram/hashtag-checker" \  -H "Content-Type: application/json" \  -d '{    "hashtags": [      "travel",      "followforfollow",      "fitness"    ]  }'
{
  "success": true,
  "results": [
    {
      "hashtag": "string",
      "status": "banned",
      "reason": "string",
      "confidence": 0
    }
  ],
  "summary": {
    "banned": 0,
    "restricted": 0,
    "safe": 0
  }
}