instagram-scrape-account-stats
Version:
scrape public Instagram data w/out API access
56 lines (55 loc) • 979 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"description": {
"type": ["string", "null"]
},
"followers": {
"type": "integer"
},
"following": {
"type": "integer"
},
"isExplicit": {
"type": "boolean"
},
"isPrivate": {
"type": "boolean"
},
"isVerified": {
"type": "boolean"
},
"name": {
"type": "string"
},
"userId": {
"type": "string"
},
"username": {
"type": "string",
"description": "the last segment of what Instagram calls a \"vanity url\""
},
"posts": {
"type": "integer"
},
"website": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false,
"required": [
"description",
"followers",
"following",
"isExplicit",
"isPrivate",
"isVerified",
"name",
"posts",
"userId",
"username",
"website"
]
}