Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Get similar groups

GET/v1/groups/{identifier}/similar1₽ per 2xx

Returns up to 25 available groups that share members with the given group, ranked by the number of shared members.

Api-Key header required.

Name Type Required Description
identifier string yes Numeric group ID or @username.
Terminal window
curl -H "Api-Key: $API_KEY" \
https://api.telesint.dev/v1/groups/example_group/similar
{
"data": {
"total_users": 1000,
"groups": [
{
"data": { "id": 12345, "title": "Related Group A", "url": "related_a" },
"similar_count": 243
},
{
"data": { "id": 67890, "title": "Related Group B", "url": "related_b" },
"similar_count": 87
}
]
}
}
Field Type Notes
total_users integer Member count of the reference group.
groups array of similar group Groups that share members, sorted by similar_count descending.
Field Type Notes
data object { id, title, url }. Fetch the full group via GET /v1/groups/{identifier}.
similar_count integer Number of members shared with the reference group.
  • 404 — reference group not found.
  • 400 — invalid identifier.
  • See Errors.