Skip to main content
POST
/
api
/
vk
/
groups
/vk/groups
curl --request POST \
  --url https://api.anysite.io/api/vk/groups \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "group": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "VkGroup",
    "name": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "group_type": "<string>",
    "is_verified": false,
    "is_closed": false,
    "description": "<string>",
    "status": "<string>",
    "activity": "<string>",
    "site": "<string>",
    "city": "<string>",
    "country": "<string>",
    "member_count": 123,
    "address": {
      "@type": "VkGroupAddress",
      "address": "<string>",
      "address_title": "<string>",
      "city": "<string>",
      "country": "<string>",
      "metro": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "contacts": [],
    "links": [],
    "profile_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
group
string
required

VK group/community id, clubN, screen name (alias), or community URL

Minimum string length: 1
Examples:

"team"

"vk"

"club1"

"https://vk.com/team"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:VkGroup
name
string | null
alias
string | null
image
string | null
cover
string | null
group_type
string | null
is_verified
boolean
default:false
is_closed
boolean
default:false
description
string | null
status
string | null
activity
string | null
site
string | null
city
string | null
country
string | null
member_count
integer | null
address
object | null
contacts
object[]
profile_url
string | null