vk
VK Ads is the official advertising platform of VK (VKontakte), Russia's largest social network. Its API provides programmatic access to campaign management and performance statistics for advertisers.
With the VK Ads integration in AACFlow, you can:
- Get Campaigns: Retrieve advertising campaigns in your account
- Get Ad Groups: List ad groups within campaigns
- Get Ads: Enumerate individual ads with filtering options
- Get Statistics: Retrieve performance metrics for campaigns, ad groups, or ads
This integration enables automated ad performance reporting, budget monitoring, and campaign management workflows.
Nutzungsanleitung
Integrate VK Ads into the workflow to manage advertising data. Requires a VK Ads OAuth token. Obtain tokens via the VK OAuth flow at id.vk.com.
Tools
vk_ads_get_campaigns
Get advertising campaigns
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
oauthToken | string | Ja | VK Ads OAuth token |
limit | number | Nein | Maximum campaigns to return |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
campaigns | array | Array of campaign objects |
total | number | Total campaigns count |
vk_ads_get_ad_groups
Get ad groups
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
oauthToken | string | Ja | VK Ads OAuth token |
campaignId | string | Nein | Filter by campaign ID |
limit | number | Nein | Maximum ad groups to return |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
adGroups | array | Array of ad group objects |
vk_ads_get_ads
Get ads
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
oauthToken | string | Ja | VK Ads OAuth token |
campaignId | string | Nein | Filter by campaign ID |
adGroupId | string | Nein | Filter by ad group ID |
limit | number | Nein | Maximum ads to return |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
ads | array | Array of ad objects |
vk_ads_get_statistics
Get performance statistics
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
oauthToken | string | Ja | VK Ads OAuth token |
objectType | string | Ja | Object type: campaign, ad_group, or ad |
objectIds | string | Ja | Comma-separated object IDs |
dateFrom | string | Ja | Start date (YYYY-MM-DD) |
dateTo | string | Ja | End date (YYYY-MM-DD) |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
statistics | array | Array of statistics objects |
Links
- Official API: https://ads.vk.com/help/api
- AACFlow block source: apps/aacflow/blocks/blocks/vk_ads.ts

