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": "@instagram_user",
    "image": "<string>",
    "description": "<string>",
    "follower_count": 0,
    "following_count": 0,
    "media_count": 0,
    "clip_count": 0,
    "is_private": false,
    "is_verified": false,
    "is_business": false,
    "account_type": 123,
    "category": "<string>",
    "external_url": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "whatsapp_number": "<string>",
    "created_at": 123,
    "fbid": "<string>",
    "pronouns": [],
    "location": {
      "city_id": 123,
      "@type": "@instagram_user_location",
      "street": "<string>",
      "city": "<string>",
      "zip": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "links": [],
    "mentions": [],
    "hashtags": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

User alias, URL or numeric ID

Minimum string length: 1
Example:

"zuck"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

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

Include the account creation date

Response

Successful Response

id
string
required
alias
string
required
name
string
required
url
string
required
@type
string
default:@instagram_user
image
string | null
description
string | null
follower_count
integer
default:0
following_count
integer
default:0
media_count
integer
default:0
clip_count
integer
default:0
is_private
boolean
default:false
is_verified
boolean
default:false
is_business
boolean
default:false
account_type
integer | null
category
string | null
external_url
string | null
email
string | null
phone
string | null
whatsapp_number
string | null
created_at
integer | null
fbid
string | null
pronouns
string[]
location
InstagramUserLocation · object
mentions
InstagramUserMention · object[]
hashtags
InstagramUserHashtag · object[]