Skip to main content
GET
/
api
/
v1
/
misc
/
instagram
/
tags
Search for Instagram Business/Creator user by username
curl --request GET \
  --url https://api.bundle.social/api/v1/misc/instagram/tags \
  --header 'x-api-key: <api-key>'
{
  "exists": true,
  "data": {
    "id": "<string>",
    "username": "<string>",
    "followers_count": 123,
    "media_count": 123,
    "profile_picture_url": "<string>",
    "biography": "<string>",
    "name": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

teamId
string
required
username
string
required

Instagram username to search for

Minimum string length: 1

Response

200

exists
boolean
required

Whether the user exists and is a Business/Creator account

data
object
required

User data if exists, null otherwise