Get basic information about a user.
GET
/users/{user-id}
users
self instead of the
user-id
.public_content
is required to read information about other users.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.instagram.com/v1/users/'
Response Response Example
200 - Example 1
{
"data": {
"bio": "string",
"counts": {
"followed_by": 0,
"follows": 0,
"media": 0
},
"full_name": "string",
"id": "string",
"profile_picture": "string",
"username": "string",
"website": "string"
},
"meta": {
"code": 0
}
}
Request
Path Params
user-id
string
required
Responses
Modified at 2023-08-15 03:55:31