Groups

Group About

Description

This endpoint retrieves about details on a specific Facebook group, based on its group ID.

Endpoint

GET api/v1/realtime/social/facebook/v1/groups/{{groupId}}/about

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

Example Request
curl -X GET 'https://api.webit.live/api/v1/realtime/social/facebook/v1/groups/327483250942/about' \
--header 'Authorization: Basic <credential string>'
Example Response
{
    "data": {
        "fb_bloks_app": {
            "root_component": {
                "bundle": {
                    "bloks_bundle_tree": "...""
                },
                "unique_root_id": "stxmx2:274",
                "on_load_actions": null
            },
            "gql_variables": [
                {
                    "__typename": "NTTextWithEntitiesAttribute",
                    "name": "stxmx2:5",
                    "twe_value": {
                        "text": "About",
                        "ranges": []
                    },
                    "twe_for_feed_message_value": null
                },
                ...
            ]
        }
    },
    "extensions": {
        "server_metadata": {
            "request_start_time_ms": 1724664697686,
            "time_at_flush_ms": 1724664698004
        },
        "is_final": true
    }
}

Group Information

Description

This endpoint retrieves detailed information on a specific Facebook group based on its group ID.

Endpoint

GET api/v1/realtime/social/facebook/v1/groups/{{groupId}}/info

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

Example Request
Example Response

Group Admins

Description

This endpoint retrieves information about the administrators of a specific Facebook group, identified by its group ID.

Endpoint

GET api/v1/realtime/social/facebook/v1/groups/{{groupId}}/admins

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

group_admin_profiles_connection_first

No

Query Param

Number | The results number to receive (max 30)

Example Request
Example Response

Group History

Description

This endpoint retrieves the historical activity and changes associated with a specific Facebook group based on its group ID

Endpoint

GET api/v1/realtime/social/facebook/v1/groups/{{groupId}}/history

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

Example Request
Example Response

Group Members

Description

This endpoint retrieves the members of a specific Facebook group based on its group ID

Endpoint

POST api/v1/realtime/social/facebook/v1/groups/{{groupId}}/members

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

group_member_profiles_connection_after_cursor

No

Body Param

String | The cursor to paginate

Example Request
Example Response

Group Albums

Description

This endpoint retrieves albums created within a specific Facebook group based on its group ID

Endpoint

POST api/v1/realtime/social/facebook/v1/groups/{{groupId}}/albums

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

end_cursor

No

Body Param

String | The cursor to paginate

Example Request
Example Response

Group Photos

Description

This endpoint retrieves photos shared within a specific Facebook group based on its group ID

Endpoint

POST api/v1/realtime/social/facebook/v1/groups/{{groupId}}/photos

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

end_cursor

No

Body Param

String | The cursor to paginate

Example Request
Example Response

Group Feed

Description

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

Endpoint

POST api/v1/realtime/social/facebook/v1/groups/{{groupId}}/feed

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

end_cursor

No

Body Param

String | The cursor to paginate

group_feed_ranking_setting

No

Body Param

Enum: TOP_POSTS (Default) | RECENT_ACTIVITY | CHRONOLOGICAL

results_count

No

Body Param

Number | The number of results to receive (max 30)

Example Request
Example Response

Search Post

Description

This endpoint Search the group posts.

Endpoint

POST api/v1/realtime/social/facebook/v1/groups/{{groupId}}/posts/search

Parameters

Param
Required
Param Type
Description

groupId

Yes

Path Param

String | The unique identifier for the Facebook group whose "About" information is to be retrieved.

typed_query

Yes

Body Param

String | The search term

end_cursor

No

Body Param

String | The cursor to paginate

start_date

No

Body Param

Date | start time in ISO format (YYYY-MM-DD)

end_date

No

Body Param

Date | end time in ISO format (YYYY-MM-DD)

Example Request
Example Response

Last updated