Pages

Page Details

Description

This endpoint retrieves detailed information about a specific Facebook page based on its page ID. The transform parameter can be used to modify or format the response according to specific requirements.

Endpoint

GET api/v1/realtime/social/facebook/v1/pages/{{pageId}}/details?transform={{transform}}

Parameters

Param
Required
Param Type
Description

pageId

Yes

Path Param

String | The unique identifier for the Facebook page whose details are to be retrieved.

Example Request
curl -X GET 'https://api.webit.live/api/v1/realtime/social/facebook/v1/pages/5634829153/details' \
--header 'Authorization: Basic <credential string>'
Example Response
{
    "results": {
        "id": "5634829153",
        "url": "https://facebook.com/5634829153",
        "name": "Salesforce",
        "description": null,
        "side_text": "We're Salesforce, the Customer Company. 👋 Data + AI + CRM + Trust = Customer Magic.",
        "website": "http://www.salesforce.com/",
        "phone": "(415) 901-7000",
        "likes": 790965,
        "followers": 806282,
        "whatsapp": null,
        "categories": [
            {
                "text": "Internet Company",
                "url": "https://www.facebook.com/pages/category/internet-company/"
            }
        ],
        "connected_accounts": [],
        "price_range": null,
        "open_hours": []
    }
}

Page About Tab

Description

This endpoint retrieves the "About" tab information for a specific Facebook page based on its page ID.

Endpoint

GET api/v1/realtime/social/facebook/v1/pages/{{pageId}}/about

Parameters

Param
Required
Param Type
Description

pageId

Yes

Path Param

String | The unique identifier for the Facebook page whose details are to be retrieved.

Example Request
Example Response

Page Reviews

Description

This endpoint retrieves the page reviews.

Endpoint

GET api/v1/realtime/social/facebook/v1/pages/{{pageId}}/reviews

Parameters

Param
Required
Param Type
Description

pageId

Yes

Path Param

String | The unique identifier for the Facebook page whose details are to be retrieved.

cursor

No

Path Param

The cursor to paginate.

Example Request
Example Response

Page Content Data

Description

This endpoint retrieves content data for a specific Facebook page based on its page ID.

Endpoint

GET api/v1/realtime/social/facebook/v1/pages/{{pageId}}/content-data

Parameters

Param
Required
Param Type
Description

pageId

Yes

Path Param

String | The unique identifier for the Facebook page whose details are to be retrieved.

Example Request
Example Response

Page Transparency

Description

This endpoint retrieves transparency information for a specific Facebook page based on its page ID.

Endpoint

GET api/v1/realtime/social/facebook/v1/pages/{{pageId}}/transparency

Parameters

Param
Required
Param Type
Description

pageId

Yes

Path Param

String | The unique identifier for the Facebook page whose details are to be retrieved.

Example Request
Example Response

Page Community Info

Description

This endpoint retrieves community-related information for a specific Facebook page based on its page ID.

Endpoint

GET api/v1/realtime/social/facebook/v1/pages/{{pageId}}/community-info

Parameters

Param
Required
Param Type
Description

pageId

Yes

Path Param

String | The unique identifier for the Facebook page whose details are to be retrieved.

Example Request
Example Response

Page Feed

Description

This endpoint retrieves the feed of a specific Facebook page based on its page ID.

Endpoint

POST api/v1/realtime/social/facebook/v1/pages/{{pageId}}/feed

Parameters

Param
Required
Param Type
Description

pageId

Yes

Path Param

String | The unique identifier for the Facebook page whose details are to be retrieved.

transform

No

Query Param

Bool | A flag indicating whether the response should be transformed or formatted. Default is set to true

start_time

No

Body Param

Number | Unix timestamp (seconds) for start time filter

end_time

No

Body Param

Number | Unix timestamp (seconds) for end time filter

end_cursor

No

Body Param

The cursor to paginate.

Example Request
Example Response

Page Albums

Description

This endpoint retrieves the albums of a specific Facebook page based on its page ID.

Endpoint

POST api/v1/realtime/social/facebook/v1/pages/{{pageId}}/albums

Parameters

Param
Required
Param Type
Description

pageId

Yes

Path Param

String | The unique identifier for the Facebook page whose details are to be retrieved.

end_cursor

No

Body Param

The cursor to paginate.

Example Request
Example Response

Last updated