| | | |---|---| | Views | 2 345 678 | | Likes | 18 932 | | Dislikes | 324 | | Shares | 4 112 | | Comments | 1 587 | | Avg. watch time | 2 min 34 sec (≈ 55 % of 4 min 12 sec) | | Completion rate | 38 % | | Engagement rate | 0.96 % |
API_TOKEN = 'YOUR_OKRU_ACCESS_TOKEN' VIDEO_ID = '9876543210' # replace with real ID
| | | |---|---| | Length | 4 min 12 sec | | Quality | 1080p, Russian subtitles | | Key timestamps | 0:45 – opening montage; 2:30 – interview with lead singer; 3:50 – fan shout‑out |
| | | |---|---| | Top countries | Russia 78 %, Kazakhstan 7 %, United States 5 % | | Age | 18‑24 45 %, 25‑34 35 %, 35‑44 15 % | | Gender | Male 62 %, Female 38 % | | Traffic sources | Direct OK.ru feed 71 %, external embeds 19 %, search 10 % | welcome home 2012 ok.ru
# ---- Extract what we need ---- views = data.get('view_count') likes = data.get('like_count') shares = data.get('repost_count') comments = data.get('comment_count') duration = data.get('duration') title = data.get('title') description= data.get('description') upload_ts = data.get('created_time') author = data.get('owner_name') tags = data.get('tags', [])
| | | |---|---| | 1. Promote via OK.ru ad platform – target 18‑34 yr, Russian‑speaking audience. | | 2. Add English subtitles → potential +12 % share lift. | | 3. Create a 30‑sec teaser for VK and TikTok to funnel new viewers. | | 4. Engage top commenters – reply, pin, and encourage user‑generated content. | 4️⃣ Quick‑Start Script (Python) – Pulling the Core Numbers If you have an API token, the following minimal script fetches the most common fields:
import requests import json
resp = requests.get(url, params=params) data = resp.json()
| | | |---|---| | Average views for similar videos | 1.8 M (our video +30 % ) | | Channel‑average engagement | 0.71 % (our video +0.25 pp ) |
url = 'https://api.ok.ru/fb.do' params = 'method': 'video.get', 'access_token': API_TOKEN, 'video_id': VIDEO_ID, 'format': 'json' | | | |---|---| | Views | 2
If you already have the OK.ru URL or the numeric ID of the post, you can simply replace the placeholder values in the template with the real data. | Method | What you need | What you’ll get | How‑to | |--------|----------------|----------------|--------| | Official OK.ru API (recommended) | - API key (register a developer app at https://dev.ok.ru ) - Post ID (numeric part of the URL) | - View count, likes, reposts, comments count, video duration, thumbnail URL, author info, tags, publication date, embed URL, etc. | 1. Call GET https://api.ok.ru/fb.do?method=video.get (or video.getInfo for videos). 2. Pass access_token and video_id . 3. Parse JSON response. | | Web‑scraping (quick, no API key) | - Any browser with developer tools or a headless‑browser script (Python + BeautifulSoup / Selenium) | Same fields as API, but you must locate them in the page’s HTML/JSON blobs. | 1. Open the video page (e.g., https://ok.ru/video/1234567890 ). 2. Look for a <script> tag containing window.__INITIAL_STATE__ – it usually holds the full JSON payload. 3. Extract the fields you need. | | Third‑party analytics services | - Account on services like SocialBlade , Kparser , BuzzSumo , NapoleonCat (some support OK.ru) | Pre‑calculated metrics (daily growth, engagement rates, demographic breakdowns). | Sign‑up → add the OK.ru URL → let the platform pull the data. | Tip: If you need historical data (e.g., daily view‑count evolution) you must run the scraper/API daily or use a service that archives it. OK.ru does not expose a public “historical graph” endpoint. 2️⃣ Report Skeleton (Replace placeholders with real numbers) Report title: “Welcome Home (2012) – Performance & Audience Insight on OK.ru (as of DD MMM YYYY)” | Section | Data Point | Example / Placeholder | |---------|------------|-----------------------| | Basic Metadata | Video ID | 1234567890 | | | URL | https://ok.ru/video/1234567890 | | | Title | Welcome Home (2012) | | | Description (first 200 chars) | A nostalgic look back at the 2012 homecoming... | | | Upload date | 12 Mar 2012 | | | Uploader (profile) | Ivan Petrov – 1 M followers | | | Language | Russian (original) | | | Category / Tags | #homecoming #2012 #nostalgia | | Performance Metrics | Total Views | 2 345 678 | | | Likes (👍) | 18 932 | | | Dislikes (👎) (if available) | 324 | | | Reposts / Shares | 4 112 | | | Comments count | 1 587 | | | Average watch time (if video) | 2 min 34 sec (≈ 55 % of total length) | | | Completion rate | 38 % | | Engagement Rate | Formula: (Likes + Comments + Shares) ÷ Views | (18 932 + 1 587 + 4 112) ÷ 2 345 678 ≈ 0.96 % | | Audience Demographics (if you have API access) | Top countries | RU (78 %), KZ (7 %), US (5 %) | | | Age brackets | 18‑24 (45 %), 25‑34 (35 %), 35‑44 (15 %) | | | Gender split | Male (62 %), Female (38 %) | | Traffic Sources | Direct OK.ru feed | 71 % | | | External (embed on other sites) | 19 % | | | Search (internal OK.ru) | 10 % | | Sentiment Analysis (Comments) | Positive comments | 68 % | | | Neutral | 22 % | | | Negative | 10 % | | | Most‑common words (top 5) | “home”, “memories”, “great”, “thanks”, “family” | | Content Highlights | Video length | 4 min 12 sec | | | Production quality | 1080p, closed captions (ru) | | | Notable moments (timestamps) | 0:45 – opening montage, 2:30 – interview with lead singer, 3:50 – fan shout‑out | | Comparative Benchmarks | Avg. view count for similar OK.ru videos (2012‑home‑themed) | 1.8 M (our video is +30 % above) | | | Avg. engagement rate for uploader’s channel | 0.71 % (our video +0.25 pp ) | | Recommendations | 1. Boost the post – OK.ru’s “Promoted Post” tool; target RU 18‑34. 2. Add subtitles in English to capture diaspora viewers – could increase shares by ~12 %. 3. Create a follow‑up clip (30 sec teaser) and cross‑post to VK, TikTok, YouTube Shorts. 4. Pin top comments and reply to the most active users to lift comment volume. | | Last Updated | Date of report generation | 16 Apr 2026 | 3️⃣ Example Filled‑In Report (with fictional numbers) Welcome Home (2012) – Performance & Audience Insight on OK.ru Report date: 16 Apr 2026 | Basic Metadata | | |---|---| | Video ID | 9876543210 | | URL | https://ok.ru/video/9876543210 | | Title | Welcome Home (2012) | | Description | “A nostalgic look back at the 2012 homecoming, featuring backstage footage, fan interviews, and never‑before‑seen clips.” | | Upload date | 12 Mar 2012 | | Uploader | Ivan Petrov (1 M followers) | | Language | Russian | | Tags | #homecoming #2012 #nostalgia |
| | | |---|---| | Positive | 68 % | | Neutral | 22 % | | Negative | 10 % | | Top words | “home”, “memories”, “great”, “thanks”, “family” |