GET
/
v1
/
facebook
/
groups
/
search
curl --request GET \
  --url https://api.papercuts.ai/v1/facebook/groups/search \
  --header 'Authorization: Bearer <token>' \
  --header 'X-User-Token: <api-key>'
{
  "groups": [
    {
      "name": "<string>",
      "numMembers": "<string>",
      "postsPerDay": "<string>",
      "privacy": "<string>",
      "url": "<string>",
      "id": "<string>"
    }
  ],
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Your Papercuts API Key

X-User-Token
string
header
required

User Token received while integrating end user accounts

Query Parameters

query
string
required

The search query to find groups

limit
integer
default:
10

The maximum number of groups to return

Response

200
application/json
Groups found successfully
groups
object[]
status
enum<string>
Available options:
ok,
error