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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InstagramUser",
"title": "InstagramUser",
"type": "object",
"description": "An Instagram Business or Creator account.",
"properties": {
"id": {
"type": "string",
"description": "Instagram user ID.",
"example": "17841405822304914"
},
"username": {
"type": "string",
"description": "Instagram username.",
"example": "examplebrand"
},
"name": {
"type": "string",
"description": "Display name.",
"example": "Example Brand"
},
"biography": {
"type": "string",
"description": "Account biography.",
"example": "Official account for Example Brand"
},
"followers_count": {
"type": "integer",
"description": "Number of followers.",
"example": 250000
},
"follows_count": {
"type": "integer",
"description": "Number of accounts followed.",
"example": 500
},
"media_count": {
"type": "integer",
"description": "Number of media posts.",
"example": 1200
},
"profile_picture_url": {
"type": "string",
"format": "uri",
"description": "Profile picture URL."
},
"website": {
"type": "string",
"format": "uri",
"description": "Website URL."
}
}
}