Facebook · Schema

InstagramUser

An Instagram Business or Creator account.

Fortune 500AdvertisingContent PublishingMessagingSocial-MediaSocial Networking

Properties

Name Type Description
id string Instagram user ID.
username string Instagram username.
name string Display name.
biography string Account biography.
followers_count integer Number of followers.
follows_count integer Number of accounts followed.
media_count integer Number of media posts.
profile_picture_url string Profile picture URL.
website string Website URL.
View JSON Schema on GitHub

JSON Schema

instagram-api-instagram-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/facebook/refs/heads/main/json-schema/instagram-api-instagram-user-schema.json",
  "title": "InstagramUser",
  "description": "An Instagram Business or Creator account.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "Instagram user ID." },
    "username": { "type": "string", "description": "Instagram username." },
    "name": { "type": "string", "description": "Display name." },
    "biography": { "type": "string", "description": "Account biography." },
    "followers_count": { "type": "integer", "description": "Number of followers." },
    "follows_count": { "type": "integer", "description": "Number of accounts followed." },
    "media_count": { "type": "integer", "description": "Number of media posts." },
    "profile_picture_url": { "type": "string", "format": "uri", "description": "Profile picture URL." },
    "website": { "type": "string", "format": "uri", "description": "Website URL." }
  }
}