Instagram Hashtags API Documentation - VebAPI

Instagram Hashtags

Generate high quality instagram hashtags

Instagram Hashtags

GET
GET /tools/instagramhashtags

Example Request


curl -X GET "https://vebapi.com/api/tools/instagramhashtags?keyword=nature" \
    -H "X-API-KEY: YOUR_API_KEY" \
    -H "Content-Type: application/json"

Response

[
    {
        "keyword": "#NatureAndFriends",
        "post_last_hr": 70
    },
    {
        "keyword": "#NatureAndNurture",
        "post_last_hr": 70
    },
    {
        "keyword": "#NatureBoy853",
        "post_last_hr": 54
    },
    {
        "keyword": "#NatureLigthing",
        "post_last_hr": 65
    },
    {
        "keyword": "#NaturePBS",
        "post_last_hr": 41
    },
    {
        "keyword": "#NatureStoriesStudio",
        "post_last_hr": 85
    },
    {
        "keyword": "#Natureclick",
        "post_last_hr": 53
    }
]
๐Ÿ“ธ Instagram Hashtags API
Generate high-quality Instagram hashtag ideas for any keyword, with recent posting velocity.
โœ… Method GET
๐Ÿ”— Endpoint https://vebapi.com/api/tools/instagramhashtags
๐Ÿ” Auth Header: X-API-KEY
๐Ÿ“ฆ Content-Type application/json
๐Ÿงฉ Query Parameters
Name Type Required Description Example
keyword string Yes Keyword to generate hashtag suggestions for nature
๐Ÿงช Example Request
Use your API key in the X-API-KEY header.
curl -X GET "https://vebapi.com/api/tools/instagramhashtags?keyword=nature" \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Content-Type: application/json"
โœ… Success Response (200)
Returns an array of hashtag suggestions. post_last_hr shows recent posting count in the last hour (velocity indicator).
[ { "keyword": "#NatureAndFriends", "post_last_hr": 70 }, { "keyword": "#NatureAndNurture", "post_last_hr": 70 }, { "keyword": "#NatureBoy853", "post_last_hr": 54 }, { "keyword": "#NatureLigthing", "post_last_hr": 65 }, { "keyword": "#NaturePBS", "post_last_hr": 41 }, { "keyword": "#NatureStoriesStudio", "post_last_hr": 85 }, { "keyword": "#Natureclick", "post_last_hr": 53 } ]
๐Ÿ“Œ Response Fields
Field Type Description
keyword string Suggested hashtag (includes #)
post_last_hr integer Posts created in the last hour for that hashtag (velocity)
โš ๏ธ Errors
Status Meaning What to do
401 Invalid or missing API key Send X-API-KEY header with a valid key
429 Rate limit exceeded Retry later or reduce request frequency
Tip: If you're building an IG caption tool, combine this endpoint with your keyword research API to generate hashtags + content ideas together.