Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$1.3 / 1k results Extract Instagram hashtag stats: top/recent posts, volume, posts per day, related hashtags with frequency, from input hashtags

Endpoint

POST /api/v1/agents/instagram/hashtag-analytics/run

Parameters

hashtags
array
required
List ยท Instagram hashtags to pull analytics for, with or without the # symbol.

Response columns

FieldDisplay nameType
hashtagHashtagtext
hashtagUrlHashtag URLurl
postsCountPosts Countnumber
relatedHashtagRelated Hashtagtext
relatedHashtagPostsRelated Hashtag Poststext
frequentCoHashtagFrequent Co-Hashtagtext
averageCoHashtagAverage Co-Hashtagtext
rareCoHashtagRare Co-Hashtagtext

Example

curl -X POST https://api.mindcase.co/api/v1/agents/instagram/hashtag-analytics/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "hashtags": [
      "webscraping",
      "marketing",
      "fashion",
      "fitness",
      "food",
      "travel",
      "photography",
      "tech",
      "startup",
      "design"
    ],
    "includeLatestPosts": true,
    "includeTopPosts": true
  }
}'

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "hashtag": "webscraping",
      "hashtagUrl": "https://www.instagram.com/explore/tags/webscraping",
      "postsCount": 2574000,
      "relatedHashtag": null,
      "relatedHashtagPosts": null,
      "frequentCoHashtag": null,
      "averageCoHashtag": null,
      "rareCoHashtag": null
    }
  ]
}