Skip to main content
POST
/
api
/
instagram
/
user
/instagram/user
curl --request POST \
  --url https://api.anysite.io/api/instagram/user \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300,
  "with_creation_date": false
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "InstagramUser",
    "image": "<string>",
    "follower_count": 0,
    "following_count": 0,
    "description": "<string>",
    "media_count": 0,
    "is_private": false,
    "is_verified": false,
    "is_business": false,
    "created_at": 123,
    "category": "<string>",
    "external_url": "<string>",
    "email": "<string>",
    "whatsapp_number": "<string>",
    "phone": "<string>",
    "location": {
      "city_id": 123,
      "@type": "InstagramUserLocation",
      "street": "<string>",
      "city": "<string>",
      "zip": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "links": [],
    "mentions": [],
    "hashtags": [],
    "pinned_channels": []
  }
]

Authorizations

access-token
string
header
required

Headers

access-token
string
required

Body

application/json
user
string
required

User ID, alias or URL

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
with_creation_date
boolean
default:false

Set this Parameter to true if you need to get account creation date.

Response

Successful Response

id
string
required
alias
string
required
name
string
required
url
string
required
@type
string
default:InstagramUser
image
string | null
follower_count
integer
default:0
following_count
integer
default:0
description
string | null
media_count
integer
default:0
is_private
boolean
default:false
is_verified
boolean
default:false
is_business
boolean
default:false
created_at
integer | null
category
string | null
external_url
string | null
email
string | null
whatsapp_number
string | null
phone
string | null
location
InstagramUserLocation · object
mentions
InstagramUserMention · object[]
hashtags
InstagramHashtag · object[]
pinned_channels
InstagramPinnedChannel · object[]