Skip to main content
POST
/
instagram
/
analyzer
/
pages
Instagram Get Pages Endpoint
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>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
access_token
string
required
Minimum length: 1

Response

Pages fetched successfully

Pages Response Object OpenAPI Schema

pages
Instagram Page Details · object[]
error
string