Get About
Obtain user details from «About this Account» section.
Note: Not all Instagram users have this information available. Only those with the «About this Account» button will provide such data.
You can anticipate receiving fields like country
, joined_at
, former_usernames
(count), accounts_with_shared_followers
(count), is_verified
, and verified_at
; however, these fields might all be null.
Screenshot of «About this Account» section
Params
Name | Type | Default | Description |
---|---|---|---|
id (required) | int | – | User id |
Usage
- Python
- PHP
- cURL
from rocketapi import InstagramAPI
instagram_api = InstagramAPI(token="your-api-key")
print(instagram_api.get_user_about(7141291))
<?php
require('vendor/autoload.php');
use RocketAPI\InstagramAPI;
$api = new InstagramAPI('your-api-key');
print_r($api->getUserAbout(7141291));
curl --request POST \
--url https://v1.rocketapi.io/instagram/user/get_about \
--header 'Content-Type: application/json' \
--header 'Authorization: Token your-api-key' \
--data '{
"id": 7141291
}'
Response example
Loading...