Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
Minimum length:
1curl --request POST \
--url https://backend.clipvision.ai/instagram/analyzer/pages \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"access_token": "<string>"
}'{
"pages": [
{
"id": "<string>",
"name": "<string>",
"instagram_account_id": "<string>",
"category": "<string>",
"link": "<string>",
"username": "<string>"
}
],
"error": "<string>"
}This endpoint fetches pages from Instagram Graph API
curl --request POST \
--url https://backend.clipvision.ai/instagram/analyzer/pages \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"access_token": "<string>"
}'{
"pages": [
{
"id": "<string>",
"name": "<string>",
"instagram_account_id": "<string>",
"category": "<string>",
"link": "<string>",
"username": "<string>"
}
],
"error": "<string>"
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
1