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: <access-token>' \
  --data '{
  "timeout": 300,
  "user": "cristiano",
  "with_creation_date": false
}'
[
  {
    "@type": "InstagramUser",
    "id": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "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": {
      "@type": "InstagramUserLocation",
      "street": "<string>",
      "city": "<string>",
      "city_id": 123,
      "zip": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "links": [],
    "mentions": [],
    "hashtags": [],
    "pinned_channels": []
  }
]

Headers

access-token
string
required

Body

application/json
user
string
required

User ID, alias or URL

Examples:

"cristiano"

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
object | null
mentions
InstagramUserMention · object[]
hashtags
InstagramHashtag · object[]
pinned_channels
InstagramPinnedChannel · object[]
I