Ozon Performance (Ads)
Manage Ozon advertising campaigns and retrieve performance statistics via Ozon Performance API
Ozon Performance is the advertising management API for Ozon, Russia's leading e-commerce marketplace. It provides programmatic access to advertising campaigns, ad groups, statistics, and budget management.
With the Ozon Performance integration in AACFlow, you can:
- Get campaigns: List all advertising campaigns in the account
- Get statistics: Retrieve performance metrics for campaigns (impressions, clicks, CTR, spend)
- Create campaign: Create a new advertising campaign
This integration enables automated advertising campaign management and performance reporting for Ozon marketplace sellers.
Usage Instructions
Integrate Ozon Performance into the workflow. Requires a Client-Id and Client-Secret from your Ozon Performance API settings. OAuth credentials are configured in the Ozon Seller personal account under Settings → API.
Tools
ozon_performance_get_campaigns
List advertising campaigns
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
clientId | string | Yes | Ozon Performance Client-Id |
clientSecret | string | Yes | Ozon Performance Client-Secret |
state | string | No | Campaign state filter (active, inactive, all) |
Output
| Parameter | Type | Description |
|---|---|---|
campaigns | array | Array of campaign objects |
total | number | Total campaigns count |
ozon_performance_get_stats
Get campaign performance statistics
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
clientId | string | Yes | Ozon Performance Client-Id |
clientSecret | string | Yes | Ozon Performance Client-Secret |
campaignId | string | Yes | Campaign ID |
dateFrom | string | Yes | Start date (YYYY-MM-DD) |
dateTo | string | Yes | End date (YYYY-MM-DD) |
Output
| Parameter | Type | Description |
|---|---|---|
statistics | array | Array of daily statistics records |
totals | object | Aggregated totals |
ozon_performance_create_campaign
Create a new advertising campaign
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
clientId | string | Yes | Ozon Performance Client-Id |
clientSecret | string | Yes | Ozon Performance Client-Secret |
title | string | Yes | Campaign name |
startDate | string | Yes | Campaign start date (YYYY-MM-DD) |
endDate | string | No | Campaign end date (YYYY-MM-DD) |
dailyBudget | number | No | Daily budget in rubles |
Output
| Parameter | Type | Description |
|---|---|---|
campaignId | string | Created campaign ID |
success | boolean | Whether the campaign was created |
Links
- Official API: https://docs.ozon.ru/api/performance/
- AACFlow block source: apps/aacflow/blocks/blocks/ozon_performance.ts

