Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
Retrieve an Instagram user profile by username API Playground
Returns public profile details for a specified Instagram username.
GETapiKey8 credits/requestinstagram.profileResponseDocInstagram
Endpoint details
Returns public profile details for a specified Instagram username.
- Method
- GET
- Path
- /instagram/profile/{username}
- Authentication
- apiKey
- Credit cost
- 8 credits/request
- Platform
- Parameters
- 2 documented fields
Request parameters
username:pathx-api-key:header
Response schema fields
codedatadata.bio_linksdata.biographydata.category_namedata.external_urldata.fbiddata.followers_countdata.following_countdata.full_namedata.iddata.is_private
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"id": "1067259270",
"fbid": "17841401778116675",
"username": "google",
"full_name": "Google",
"biography": "Here to help.",
"external_url": "https://linkin.bio/google"
}
}cURL example
curl "https://api.crawlora.net/api/v1/instagram/profile/<username>" \
-H "x-api-key: <api-key>"