Get Group Statistic

Get group statistic

GET https://api.metaforo.io/v2/groups/{group_id}/statistic

Get group info.

Request Body

Name
Type
Description

group_id*

int

The ID of the group

api_key*

String

The API KEY that assigned to you.

{
    "status": true,
    "code": "20000",
    "description": "",
    "server": "rest",
    "data": {
        "group_statistic": {
            "members": 29,
            "threads": 46
        }
    }
}

Good to know: This API method was created using the API Method block, it's how you can build out an API method documentation from scratch. Have a play with the block and you'll see you can do some nifty things like add and reorder parameters, document responses, and give your methods detailed descriptions.

Last updated