> ## Documentation Index
> Fetch the complete documentation index at: https://www.ayrshare.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Phân tích một Bài đăng

> Nhận dữ liệu phân tích theo thời gian thực cho các bài đăng được gửi qua Ayrshare

export const XByoNotice = () => <Info>
  <strong>Targeting X/Twitter?</strong> Starting March 31, 2026, all X operations require your own API credentials. After linking X via OAuth, include these 2 headers in your request:
  <br /><br />
  <code>X-Twitter-OAuth1-Api-Key</code> — Your API Key (Consumer Key)<br />
  <code>X-Twitter-OAuth1-Api-Secret</code> — Your API Key Secret (Consumer Secret)
  <br /><br />
  <strong>One-time setup per Ayrshare account.</strong> You create one X Developer App and reuse the same API Key and Secret across every sub-profile / end-user you link. You do <em>not</em> create a new app per customer.
  <br /><br />
  Not linked yet? See the <a href="/dashboard/connect-social-accounts/x-twitter-byo-keys">full setup guide</a> to connect your X account.
  <br /><br />
  Your keys are never logged or stored by Ayrshare.
</Info>;

export const PlansAvailable = ({plans = [], maxPackRequired}) => {
  let displayPlans = plans;
  if (plans && plans.length === 1) {
    const lowerCasePlan = plans[0].toLowerCase();
    if (lowerCasePlan === "business") {
      displayPlans = ["Launch", "Business", "Enterprise"];
    } else if (lowerCasePlan === "premium") {
      displayPlans = ["Premium", "Launch", "Business", "Enterprise"];
    }
  }
  return <Note>
Available on {displayPlans.length === 1 ? "the " : ""}
{displayPlans.join(", ").replace(/\b\w/g, l => l.toUpperCase())}{" "}
{displayPlans.length > 1 ? "plans" : "plan"}.

{maxPackRequired && <span onClick={() => window.open('https://www.ayrshare.com/docs/additional/maxpack', '_self')} className="flex items-center mt-2 cursor-pointer">
 <span className="px-1.5 py-0.5 rounded text-sm" style={{
    backgroundColor: '#C264B6',
    color: 'white',
    fontSize: '12px'
  }}>
   Max Pack required
 </span>
</span>}
</Note>;
};

export const HeaderAPI = ({noProfileKey, profileKeyRequired}) => <>
    <ParamField header="Authorization" type="string" required>
      <a href="/apis/overview#authorization">API Key</a> of the Primary Profile.
      <br />
      <br />
      Format: <code>Authorization: Bearer API_KEY</code>
    </ParamField>
    {!noProfileKey && (profileKeyRequired ? <ParamField header="Profile-Key" type="string" required>
          <a href="/apis/overview#profile-key-format">Profile Key</a> of a User Profile.
          <br />
          <br />
          Format: <code>Profile-Key: PROFILE_KEY</code>
        </ParamField> : <ParamField header="Profile-Key" type="string">
          <a href="/apis/overview#profile-key-format">Profile Key</a> of a User Profile.
          <br />
          <br />
          Format: <code>Profile-Key: PROFILE_KEY</code>
        </ParamField>)}
  </>;

<PlansAvailable plans={["premium"]} maxPackRequired={false} />

<XByoNotice />

Nhận dữ liệu phân tích theo thời gian thực như lượt thích, lượt hiển thị, lượt xem và phản ứng cho một bài đăng đã được gửi qua Ayrshare bằng cách sử dụng [Ayrshare Post ID](/apis/overview#ayrshare-post-id).

Đối với phân tích các bài đăng có nguồn gốc bên ngoài Ayrshare, hãy xem [Phân tích theo Social Post ID](/apis/analytics/social-by-id).

<Warning>
  **Facebook: một số chỉ số reach và video đã bị Meta ngừng hỗ trợ (15 tháng 6, 2026).** Meta đã loại bỏ các chỉ số Insights về unique-impression và video-view 3 giây trên tất cả các phiên bản Graph API, vì vậy đối tượng `analytics` của Facebook không còn trả về `impressionsUnique`, `impressionsFanUnique`, `impressionsOrganicUnique`, `impressionsPaidUnique`, hoặc `videoViewsUnique`. Sử dụng `mediaView` cho reach (một chỉ số kế nhiệm Total Unique Media Views đang được lên kế hoạch). Các trường thường được sử dụng khác như `reactionsByType` và `videoViews` không bị ảnh hưởng. Tham khảo: [Các Thay đổi API Sắp tới — 15 tháng 6, 2026](/whatsnew/upcoming-api-changes#june-15-2026).
</Warning>

#### Thông tin Bổ sung

<ul className="custom-bullets">
  <li>
    Các nền tảng sau hiện được hỗ trợ: Bluesky, Facebook Pages, Instagram, X/Twitter, LinkedIn, Pinterest, Reddit, Snapchat, Threads, TikTok, và YouTube.
  </li>

  <li>
    Số lượng bình luận trên Facebook và Instagram hiển thị trong API có thể khác với số lượng hiển thị trong ứng dụng mạng xã hội. Điều này xảy ra vì hai lý do: - Một số người dùng có cài đặt quyền riêng tư ẩn bình luận của họ với những người không phải bạn bè hoặc không có kết nối chung. Những bình luận riêng tư này vẫn được tính vào tổng số bình luận. - Có thể có sự không nhất quán trong dữ liệu được Meta báo cáo.
  </li>

  <li>
    Các chỉ số igReelsAggregatedAllPlaysCount và playsCount của Instagram hiển thị trong API có thể khác với số lượng hiển thị trong ứng dụng mạng xã hội. Điều này có thể xảy ra vì một số lý do:

    <ul class="custom-bullets">
      <li>Bài đăng đã được quảng bá. Chỉ các lượt phát tự nhiên được bao gồm trong phản hồi API.</li>
      <li>Có thể có sự không nhất quán trong dữ liệu được Meta báo cáo.</li>
    </ul>
  </li>

  <li>
    Các Thread của X/Twitter trả về dưới dạng một Mảng các đối tượng, với mỗi đối tượng tương ứng với một Tweet trong Thread.
  </li>

  <li>
    YouTube có thể mất 24-48 giờ để xử lý phân tích cho các video có ít lượt xem video hoặc ít người theo dõi kênh.
  </li>

  <li>
    Phân tích TikTok:

    <ul class="custom-bullets">
      <li>
        TikTok có thể mất 24-48 giờ để cập nhật dữ liệu phân tích của họ, chẳng hạn như lượt xem video, nhân khẩu học, lượt thích, lượt chia sẻ và bình luận.
      </li>

      <li>
        Để truy cập phân tích TikTok, chủ tài khoản phải: 1. Đăng ít nhất một video. 2. Nhấn nút "[Turn On](https://www.tiktok.com/feedback?id=7133058093574806018\&lang=en\&type=)" trên trang Analytics của ứng dụng TikTok di động của họ. 3. Có 100 người theo dõi để nhận thông tin chi tiết bổ sung về người xem và mức độ tương tác nội dung.
      </li>

      <li>
        TikTok không trả về phân tích bài đăng nếu media chứa tài liệu có bản quyền hoặc đã bị gắn cờ vi phạm bản quyền. Ví dụ về tài liệu có bản quyền có thể bao gồm âm thanh trên reels (TikTok sẽ tắt tiếng các video này). Bạn có thể kiểm tra trong ứng dụng TikTok ở phần Activity -> System Notifications.
      </li>

      <li>
        Một số trường phân tích TikTok có thể không có sẵn nếu video đã không hoạt động trong hơn 7 ngày. Để truy xuất dữ liệu này, hãy tạo hoạt động mới trên video (xem, thích, bình luận hoặc chia sẻ) và thử lại sau 24-48 giờ. Nếu một video không được trả về trong phản hồi, lý do có thể là video đã bị lọc ra do vi phạm, chẳng hạn như vi phạm bản quyền âm nhạc. Các trường này bao gồm:

        <ul class="custom-bullets">
          <li>`reach`</li>
          <li>`fullVideoWatchedRate`</li>
          <li>`totalTimeWatched`</li>
          <li>`averageTimeWatched`</li>
          <li>`impressionSources`</li>
          <li>`audienceCountries`</li>
        </ul>
      </li>
    </ul>
  </li>

  <li>
    Hồ sơ LinkedIn cá nhân (thành viên) hiện trả về một ma trận phân tích bài đăng mở rộng. Các chỉ số thành viên có sẵn là:

    <ul class="custom-bullets">
      <li>`impressionCount` — Lượt hiển thị trên bài đăng</li>
      <li>`uniqueImpressionsCount` — Số thành viên duy nhất tiếp cận được (LinkedIn `MEMBERS_REACHED`)</li>
      <li>`likeCount` — Số lượng phản ứng</li>
      <li>`commentCount` — Số lượng bình luận</li>
      <li>`shareCount` — Số lần chia sẻ lại bài đăng</li>
      <li>`engagement` — Lượt nhấp, thích, bình luận và chia sẻ tự nhiên trên lượt hiển thị</li>
      <li>`reactions` — Phân tích phản ứng theo từng loại (khi có phản ứng)</li>
      <li>Đối với bài đăng video: `videoViews`, `videoViewers`, và `videoWatchTimeMs`</li>
    </ul>

    Các chỉ số video chỉ được trả về cho các bài đăng video và không có sẵn sau hơn một năm kể từ khi bài đăng được tạo.
  </li>

  <li>
    Thông tin chi tiết về Instagram Story chỉ có sẵn trong 24 giờ, bất kể các story có được lưu trữ hoặc đặt làm nổi bật hay không. Lưu ý:

    <ul class="custom-bullets">
      <li>Các chỉ số media của story có giá trị nhỏ hơn `5` sẽ trả về là `0`.</li>

      <li>
        Đối với các Story được tạo bởi người dùng ở Châu Âu và Nhật Bản, chỉ số `replies` trả về giá trị `0`.
      </li>
    </ul>
  </li>

  <li>Phân tích Facebook Story không có sẵn.</li>

  <li>
    Dữ liệu phân tích Pinterest (lượt hiển thị, người theo dõi và lượt nhấp) trở nên khả dụng sau 24-72 giờ.
  </li>

  <li>
    Đối với YouTube Shorts, lượt xem sẽ trả về số lần một Short bắt đầu phát hoặc phát lại, không có yêu cầu về thời gian xem tối thiểu.
  </li>
</ul>

## Tham số Header

<HeaderAPI />

## Tham số Body

<ParamField body="id" type="string" required>
  [Ayrshare Post ID](/apis/overview#ayrshare-post-id) được trả về từ [endpoint
  /post](/apis/post/post). Đây là `id` Ayrshare cấp cao nhất được trả về và không phải là các social post
  id trong `postIds`.
</ParamField>

<ParamField body="platforms" type="array">
  Mảng chuỗi các nền tảng để truy xuất phân tích. Chấp nhận một mảng các chuỗi với các giá trị:

  ```json theme={"system"}
  {
    "platforms": [
      "bluesky",
      "facebook",
      "instagram",
      "linkedin",
      "pinterest",
      "reddit",
      "snapchat",
      "threads",
      "tiktok",
      "twitter",
      "youtube"
    ]
  }
  ```

  Nếu platforms không được bao gồm, dữ liệu phân tích sẽ được trả về cho tất cả các mạng xã hội mà bài đăng đã được gửi đến.
</ParamField>

<RequestExample>
  ```bash cURL theme={"system"}
  curl \
  -H "Authorization: Bearer API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{
      "id": "Post ID",
      "platforms": ["bluesky", "facebook", "instagram", "linkedin",
      "pinterest", "snapchat", "threads", "tiktok", "twitter", "youtube"]}' \
  -X POST https://api.ayrshare.com/api/analytics/post
  ```

  ```javascript JavaScript theme={"system"}
  const API_KEY = "API_KEY";

  fetch("https://api.ayrshare.com/api/analytics/post", {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      Authorization: `Bearer ${API_KEY}`
    },
    body: JSON.stringify({
      id: "Post ID", // required
      platforms: [
        "bluesky",
        "facebook",
        "instagram",
        "linkedin",
        "pinterest",
        "snapchat",
        "threads",
        "tiktok",
        "twitter",
        "youtube"
      ] // optional
    })
  })
    .then((res) => res.json())
    .then((json) => console.log(json))
    .catch(console.error);
  ```

  ```python Python theme={"system"}
  import requests

  payload = {'id': 'Post ID',
          'platforms': ['bluesky', 'facebook', 'instagram', 'linkedin',
          'pinterest', 'snapchat', 'threads', 'tiktok', 'twitter', 'youtube']}
  headers = {'Content-Type': 'application/json',
          'Authorization': 'Bearer API_KEY'}

  r = requests.post('https://api.ayrshare.com/api/analytics/post',
      json=payload,
      headers=headers)

  print(r.json())
  ```

  ```php PHP theme={"system"}
  <?php

  $apiUrl = 'https://api.ayrshare.com/api/analytics/post';
  $apiKey = 'API_KEY';  // Thay thế 'API_KEY' bằng khóa API thực tế của bạn

  $headers = [
      'Content-Type: application/json',
      'Authorization: Bearer ' . $apiKey,
  ];

  $data = json_encode([
      'id' => 'Post ID', // Thay thế bằng Post ID thực tế của bạn
      'platforms' => ['bluesky', 'facebook', 'instagram', 'linkedin',
      'pinterest', 'snapchat', 'threads', 'tiktok', 'twitter', 'youtube'] // optional
  ]);

  $curl = curl_init($apiUrl);
  curl_setopt_array($curl, [
      CURLOPT_RETURNTRANSFER => true,
      CURLOPT_POST => true,
      CURLOPT_HTTPHEADER => $headers,
      CURLOPT_POSTFIELDS => $data
  ]);

  $response = curl_exec($curl);

  if ($response === false) {
      echo 'Curl error: ' . curl_error($curl);
  } else {
      echo json_encode(json_decode($response), JSON_PRETTY_PRINT);
  }

  curl_close($curl);
  ```

  ```go Go theme={"system"}
  package main

  import (
  	"bytes"
  	"encoding/json"
  	"log"
  	"net/http"
  )

  func main() {
  	message := map[string]interface{}{
  		"id":      "Post ID",
  		"platforms": []string{"bluesky", "facebook", "instagram", "linkedin",
          "pinterest", "snapchat", "threads", "tiktok", "twitter", "youtube"},
  	}

  	bytesRepresentation, err := json.Marshal(message)
  	if err != nil {
  		log.Fatalln(err)
  	}

  	req, _ := http.NewRequest("POST", "https://api.ayrshare.com/api/analytics/post",
  		bytes.NewBuffer(bytesRepresentation))

  	req.Header.Add("Content-Type", "application/json; charset=UTF-8")
  	req.Header.Add("Authorization", "Bearer API_KEY")

  	res, err := http.DefaultClient.Do(req)
  	if err != nil {
  		log.Fatal("Error:", err)
  	}

  	res.Body.Close()
  }
  ```

  ```csharp C# theme={"system"}
  using System;
  using System.Net.Http;
  using System.Text;
  using System.Threading.Tasks;

  namespace PostAnalyticsPOSTRequest_csharp
  {
      class PostAnalytics
      {
          private static readonly HttpClient client = new HttpClient();

          static async Task Main(string[] args)
          {
              string API_KEY = "API_KEY";
              string url = "https://api.ayrshare.com/api/analytics/analytics/post";

              client.DefaultRequestHeaders.Add("Authorization", "Bearer " + API_KEY);

              string json = "{\"id\": \"Post ID\"," +
                  "\"platforms\": [\"bluesky\", \"facebook\", \"instagram\", \"linkedin\", \"pinterest\", \"snapchat\", \"tiktok\", \"twitter\", \"youtube\"]}";

              try
              {
                  var content = new StringContent(json, Encoding.UTF8, "application/json");
                  HttpResponseMessage response = await client.PostAsync(url, content);
                  response.EnsureSuccessStatusCode();
                  string responseBody = await response.Content.ReadAsStringAsync();
                  Console.WriteLine(responseBody);
              }
              catch (HttpRequestException e)
              {
                  Console.WriteLine($"Error: {e.Message}");
              }
          }
      }
  }
  ```
</RequestExample>

<Info>
  Khi các chỉ số tích lũy (ví dụ: lượt thích, bình luận, lượt xem) tạm thời không có sẵn từ mạng xã hội, API sẽ tự động điền chúng từ dữ liệu đã lưu trữ. Hai trường tùy chọn có thể xuất hiện trong đối tượng `analytics` theo từng nền tảng:

  * **`backfilledFrom`** (string, ISO 8601) — Xuất hiện khi một hoặc nhiều chỉ số tích lũy được thay thế từ dữ liệu đã lưu trữ. Timestamp cho biết khi nào dữ liệu được lưu trữ được cập nhật lần cuối.
  * **`recoveredFrom`** (string, ISO 8601) — Xuất hiện khi toàn bộ phản hồi phân tích được khôi phục từ dữ liệu đã lưu trữ do lỗi API hoàn toàn. Timestamp cho biết khi nào dữ liệu được lưu trữ được cập nhật lần cuối.

  Dữ liệu đã lưu trữ cũ hơn 4 ngày được coi là lỗi thời và sẽ không được sử dụng để điền bổ sung hoặc khôi phục.
</Info>

<Info>
  **Phân tích LinkedIn cá nhân (thành viên) — yêu cầu liên kết lại.** Các hồ sơ LinkedIn cá nhân được liên kết trước khi phân tích bài đăng thành viên được triển khai không có các scope phân tích cần thiết. Các yêu cầu phân tích cho các hồ sơ đó trả về [mã lỗi `475`](/errors/errors-ayrshare#linkedin-analytics-errors) ("re-link your LinkedIn profile to enable analytics"). Chủ tài khoản phải liên kết lại hồ sơ LinkedIn của họ trên trang Social Accounts để cấp các scope mới. Hãy đợi vài phút sau khi liên kết lại để mã `475` được xóa (Ayrshare và LinkedIn đều tạm thời cache trạng thái quyền, thường là \~5-10 phút). Việc đăng bài không bị ảnh hưởng.

  Số lượng bài đăng thành viên LinkedIn là best-effort: tổng `shareCount` (RESHARE), `likeCount` (REACTION), và `commentCount` (COMMENT) có thể khác một chút so với các số hiển thị trong giao diện người dùng LinkedIn.
</Info>

<ResponseExample>
  ```json 200: Response {2, 24, 171, 253, 287, 331, 401, 417, 449, 463, 598, 751} theme={"system"}
  {
    "bluesky": {
        "id": "at://did:plc:n7atrjd22xgkmgwig6dzlhzd/app.bsky.feed.post/3lez7fwx457", // Bluesky Social Post ID
        "postUrl": "https://bsky.app/profile/madworlds.bsky.social/post/3lez7fwx457",
        "analytics": {
            "cid": "bafyreigh7nz7x6pl4atgsextqtcbh33mg66yqt3caeihutn7ojkmpdtnzm", // Bluesky Content ID
            "created": "2025-01-05T18:04:28.316Z",
            "id": "at://did:plc:n7atrjd22xgkmgwig6dzlhzd/app.bsky.feed.post/3lfb57nxgxs2e", // Bluesky Social Post ID
            "indexedAt": "2025-01-05T18:04:29.150Z",
            "labels": [],
            "likeCount": 3,
            "post": "The day is what you make it!",
            "postUrl": "https://bsky.app/profile/madworlds.bsky.social/post/3lez7fwx45723",
            "quoteCount": 2,
            "replyCount": 1,
            "repostCount": 1,
            "viewer": {                     // Information about the viewing user's relationship
                "threadMuted": false,       // Whether the viewing user has muted the thread containing this content
                "embeddingDisabled": false  // Whether embedding/sharing of this content is disabled for the viewing user
            }
        }
    },
      /* If the FB page has fewer than 100 likes then not all analytics data available. */
      "facebook": {
          "id": "1397547544885713_2159201585286968",  // Facebook Social Post ID
          "postUrl": "https://www.facebook.com/1397547544885713_2159201585286968",
          "analytics": {
              "blueReelsPlayCount": 136,              // Reels: The number of times your reel starts to play after an impression is already counted. This is defined as reels sessions with 1ms or more of playback and excludes replays.
              "commentsCount": 1,                     // Count of comment for the post
              // impressionsFanUnique / impressionsOrganicUnique / impressionsPaidUnique / impressionsUnique were retired by Meta (June 15, 2026); see the note at the top of this page.
              "likeCount": 23,                        // Count of likes for the post
              "likedBy": [                            // Users who liked the post
                  {
                      "id": "7101149746568432",
                      "name": "John Smith"
                  }
              ],
              "mediaUrls": [
                  {
                      "media": {
                          "image": {
                              "height": 405,
                              "src": "https://scontent-lga3-1.xx.fbcdn.net/v/t",
                              "width": 720
                          },
                          "source": "https://video-lga3-2.xx.fbcdn.net/o1/v/t2/f2/m69/AQN"
                      },
                      "mediaType": "video",
                      "type": "story"
                  }
              ],
              "mediaView": 12,                        // The number of times this post was played or displayed. Content includes videos, posts, stories and ads.
              "mediaViewIsFromAds": 0,                // The number of times this post was played or displayed from ads.
              "mediaViewIsFromFollowers": 0,          // The number of times this post was played or displayed from followers.
              "postVideoAvgTimeWatched": 4470,        // Reels: The average time (in ms) your reel was played, including any time spent replaying the reel during a single instance of it playing. Because this metric includes replays, this number could be greater than the total length of the reel
              "postVideoSocialActions": {             // Reels: The number of comments, shares, and reactions on your reel
                  "share": 1
              },
              "postVideoViewTime": 608011,            // Reels: Total time (in ms) your reel was played, including any time spent replaying your reel.
              "reactions": {
                  "like": 1,                          // Like reactions - The "like" reaction counts include both "like" and "care" reactions.
                  "love": 1,                          // Love reactions
                  "anger": 1,                         // Anger reactions
                  "haha": 1,                          // Haha reactions
                  "wow": 1,                           // Wow reactions
                  "sorry": 1,                         // Sorry reactions
                  "total": 6                          // Total number of reactions
              },
              "reactionsByType": 6,                   // The total types of reactions
              "sharesCount": 34,                      // Total number of times post shared

              /** The following fields are available for videos */
              "totalVideo10SViews": 621,              // Total number of times your video was viewed for 10 seconds or viewed to the end, whichever came first.
              "totalVideo10SViewsAutoPlayed": 564,    // Number of times people clicked to play your video and viewed it for 10 seconds or viewed it to the end, whichever came first.
              "totalVideo10SViewsClickedToPlay": 46,  // Number of times your video started automatically playing and people viewed it for 10 seconds, or viewed it to the end, whichever came first.
              "totalVideo10SViewsOrganic": 621,       // Number of times your video was viewed for 10 seconds or viewed to the end, whichever came first, without a paid promotion.
              "totalVideo10SViewsPaid": 0,            // Number of times your video was viewed for 10 seconds or viewed to the end, whichever came first, after a paid promotion.
              "totalVideo10SViewsSoundOn": 380,       // Number of times your video sound was turned on and was viewed for 10 seconds or viewed to the end, whichever came first.
              "totalVideo10SViewsUnique": 621,        // Number of unique people who viewed your video for 10 seconds or viewed to the end, whichever came first.
              "totalVideo15SViews": 525,              // Total number of times your video was viewed for at least 15 seconds.
              "totalVideo60SExcludesShorterViews": 0, // Total number of times your video was viewed for 60 seconds only if the video is 60 seconds or longer.
              "totalVideoAvgTimeWatched": 8494,       // Lifetime: Average time video viewed
              "totalVideoCompleteViews": 430,         // Total number of times your video was watched at 95% of its length, including watches that skipped to this point.
              "totalVideoCompleteViewsAutoPlayed": 374,      // Number of times your video started automatically playing and people watched it at 95% of its length, including watches that skipped to this point.
              "totalVideoCompleteViewsClickedToPlay": 56,    // Number of times people clicked to play your video and watched it at 95% of its length, including watches that skipped to this point.
              "totalVideoCompleteViewsOrganic": 430,         // Number of times your video was watches at 95% of its length without any paid promotion, including watches that skipped to this point.
              "totalVideoCompleteViewsOrganicUnique": 430,   // The number of unique people who watched your video at 95% of its length without any paid promotion, including people that skipped to this point
              "totalVideoCompleteViewsPaid": 0,       // Number of times your video was watched at 95% of its length after paid promotion, including watches that skipped to this point.
              "totalVideoCompleteViewsPaidUnique": 0, // The number of unique people who watched your video at 95% of its length after paid promotion, including people that skipped to this point.
              "totalVideoCompleteViewsUnique": 430,   // Total number of unique people who watched your video at 95% of its length or more, including people that skipped to this point.
              // The totalVideoImpressions* family (Video Impressions) was retired by Meta (June 15, 2026); see the note at the top of this page.
              "totalVideoReactionsByTypeTotal": {     // The total number of reactions to your post by type.
                  "like": 13,
                  "haha": 2
              },
              "totalVideoStoriesByActionType": {      // Number of stories created about your Page Video, by action type.
                  "like": 15
              },
              "totalVideoViewTimeByAgeBucketAndGender": { // Video view time (in ms) by age bucket and gender.
                  "f1317": 23521,
                  "m1317": 184052,
                  "u1824": 2774,
                  "f1824": 118193,
                  "m1824": 1340281,
                  "u2534": 11975,
                  "f2534": 407006,
                  "m2534": 3960750,
                  "u3544": 27054,
                  "f3544": 332576,
                  "m3544": 5477331,
                  "u4554": 41804,
                  "f4554": 375449,
                  "m4554": 3794202,
                  "u5564": 35717,
                  "f5564": 159041,
                  "m5564": 3582574,
                  "u65+": 8245,
                  "f65+": 423739,
                  "m65+": 2866201
              },
              "totalVideoViewTimeByDistributionType": { // Video view time (in ms) by distribution type. On asset level, there are three possible distribution types: (page_owned/shared/crossposted)
                  "pageOwned": 23172485
              },
              "totalVideoViewTimeByRegionId": {       // Video view time (in ms) by region ID.
                  "californiaUnitedStates": 791788,
                  "texasUnitedStates": 480891,
                  "karnatakaIndia": 390297,
                  "uttarPradeshIndia": 368698,
                  "tamilNaduIndia": 359103,
                  "queenslandAustralia": 295491,
                  "newSouthWalesAustralia": 284222,
                  "newYorkUnitedStates": 250035,
                  "maharashtraIndia": 248465,
                  "washingtonUnitedStates": 237430
              },
              "totalVideoViewTotalTime": 23172485,    // Total time (in ms) video has been viewed.
              "totalVideoViewTotalTimeOrganic": 23172485, // Total time (in ms) video has been viewed in Feed or ticker or on your Page's Timeline.
              "totalVideoViewTotalTimePaid": 0,       // Total time (in ms) video has been viewed after paid promotion.
              "totalVideoViews": 1283,
              "totalVideoViewsAutoplayed": 1237,      // Number of times your video started automatically playing and people viewed it for 3 seconds or viewed it to the end, whichever came first.
              "totalVideoViewsByDistributionType": {  // Video views by distribution type. On asset level, there are three possible distribution types: (page_owned/shared/crossposted)
                  "pageOwned": 1283
              },
              "totalVideoViewsClickedToPlay": 46,     // Number of times people clicked to play your video and viewed it for 3 seconds or viewed it to the end, whichever came first.
              "totalVideoViewsOrganic": 1283,         // Number of times your video was viewed for 3 seconds or viewed to the end, whichever came first, without any paid promotion.
              "totalVideoViewsPaid": 0,               // Number of times your video was viewed for 3 seconds or viewed to the end, whichever came first, after paid promotion.
              "totalVideoViewsSoundOn": 743,          // Number of times your video sound was turned on and was viewed for 3 seconds or viewed to the end, whichever came first.
              "videoViews": 3                         // Times your videos played for at least 3 seconds, or for nearly their total length if they're shorter than 3 seconds. During a single instance of a video playing, we'll exclude any time spent replaying the video. This includes live views.
              // videoViewsUnique was retired by Meta (June 15, 2026); see the note at the top of this page.
          },
          "lastUpdated": "2022-04-23T18:44:29.778Z",
          "nextUpdate": "2022-04-23T19:19:29.778Z"
      },
      "instagram": {
          "id": "17856916804532520",    // Instagram Social Post ID
          "postUrl": "https://www.instagram.com/p/ChALNdaOT3G/",
          "analytics": {
              /* FEED Data */
              "caption": "It always seems impossible until it's done. - Nelson Mandela",
              "commentsCount": 1,        // Comments total
              "created": "2022-09-07T22:39:06Z",    // Time post was created
              "engagementCount": 3,     // Likes, comments, and saves
              "followsCount": 2,        // Number of followers gained
              "likeCount": 1,           // Likes total - organic likes, promoted post likes not included
              "mediaProductType": "FEED",    // Type of IG Share: AD, FEED, STORY or REELS
              "mediaType": "IMAGE",     // Media type: CAROUSEL_ALBUM, IMAGE, or VIDEO
              "mediaUrls": [
                {
                  "mediaUrl": "https://scontent.cdninstagram.com/v/t51.82787-15/516601117_17872451562389336_3472858781474899926_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=107&ccb=1-7&_nc_sid=18de74&_nc_ohc=-LOY7upopXoQ7kNvwEkqUMq&_nc_oc=AdmN47ZBlmciajpv7udoP1ku6J-FBgBGIrRskGgPmIOjT5D3WI9F21_Fg1Gi60-aI70&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&edm=AEQ6tj4EAAAA&_nc_gid=PZY4V4Pvo8ePuq2CfSBp1A&oh=00_AfQplZLqrCEYwXkCutbmMAGIgpcBUkKqGcfRdDLZU4QHRA&oe=6872DFF9"
                }
              ],
              "profileActivityCount": 1,// The number of actions people take when they visit your profile after engaging with your post
              "profileVisitsCount": 11, // The number of times your profile was visited.
              "reachCount": 71,         // Unique accounts that have seen the post
              "savedCount": 1,          // Unique accounts have saved the post
              "sharesCount": 12,        // Number of times the post was shared
              "username": "jackthegiant",
              "viewsCount": 71,         // Total number of times the post has been seen.

              /* REELS Data */
              "caption": "Gorgeous gifts for new Mum & Bub \n\n@mikimoocreations @romperandco @obdesigns @salusbody @enaproducts",
              "clipsReplaysCount": 21,        // The number of times your reel starts to play again after an initial play of your reel. This is defined as replays of 1ms or more in the same reel session.
              "commentsCount": 1,             // Comments total
              "created": "2022-09-15T06:58:55Z",
              "engagementCount": 183,         // Number of likes, saves, comments, and shares on the reel, minus the number of unlikes, unsaves, and deleted comments.
              "igReelsAggregatedAllPlaysCount": 42, // The number of times your reel starts to play or replay after an impression is already counted. This is defined as plays of 1ms or more. Replays are counted after the initial play in the same reel session. Organic plays only; promoted post plays are not included.
              "igReelsAvgWatchTimeCount": 23, // The average amount of time spent playing the reel. This is calculated by the watch time divided by the number of plays.
              "igReelsVideoViewTotalTimeCount": 21, // The total amount of time the reel was played, including any time spent replaying the reel.
              "likeCount": 21,                // Likes total on the reel
              "mediaProductType": "REELS",    // Type of IG Share: AD, FEED, STORY or REELS
              "mediaType": "VIDEO",           // Always "VIDEO"
              "mediaUrls": [
                {
                  "mediaUrl": "https://instagram.flis9-1.fna.fbcdn.net/o1/v...amug&oe=686ED4D3"
                }
              ],
              "playsCount": 680,              // Number of times the reels starts to play after an impression is already counted. This is defined as video sessions with 1 ms or more of playback and excludes replays. Organic plays only; promoted post plays are not included.
              "reachCount": 689,              // Number of unique accounts that have seen the reel at least once. Reach is different from impressions, which can include multiple views of a reel by the same account.
              "savedCount": 0,                // Number of saves of the reel.
              "sharesCount": 2,               // Number of shares of the reel.
              "username": "mordiallocflorist",
              "viewsCount": 40,              // Total number of times the reel has been seen.

              /* STORY Data - Fewer than 5 insights will not show metric data. */
              "commentsCount": 2,
              "created": "2024-09-16T08:37:57Z",
              "engagementCount": 10,
              "followsCount": 0,
              "likeCount": 3,
              "mediaProductType": "STORY",
              "mediaType": "IMAGE",
              "mediaUrls": [
                {
                  "mediaUrl": "https://scontent.cdninstagram.com/v/t51.82787-15/517935...we32"
                }
              ],
              "notEnoughViews": true,     // True if fewer than 5 unique insights. If fewer than 5 unique insights, metric data not available.
              "navigationCount": 15,      // Total nav interactions of taps and swipes
              "profileActivityCount": 3,
              "profileVisitsCount": 1,
              "reachCount": 10,
              "repliesCount": 3,
              "sharesCount": 2,
              "swipeForwardCount": 1,   // Swipes "Next Story" on the native interface.
              "tapBackCount": 2,        // Taps "Back" on the native interface.
              "tapForwardCount": 9,     // Taps "Forward" on the native interface.
              "tapExitCount": 3,        // Taps "Exit" on the native interface.
              "username": "ayrshare",
              "viewsCount": 10,         // Total number of times the story has been seen.

          },
          "lastUpdated": "2022-04-23T18:44:29.778Z",
          "nextUpdate": "2022-04-23T19:19:29.778Z"
      },
      /* Corporate LinkedIn Account Example. Past 12 months, using a rolling 12-month window. */
      "linkedin": {
          "id": "6783586276949000192",     // LinkedIn Social Post ID
          "postUrl": "https://www.linkedin.com/feed/update/urn:li:share:6783586276949000192",
          "type": "corporate", // corporate or personal. Please see notes on personal analytics
          "analytics": {
              "clickCount": 0,        // Clicks on a post - company only
              "commentCount": 0,      // Comments count
              "comments": [           // Comment IDs - can be used to look up comments
                  "urn:li:comment:(urn:li:activity:7226002855806021632,7226004971362627585)"
              ],
              "commentsState": "OPEN", // Comments allowed or not
              "engagement": 0,        // Organic clicks, likes, comments, and shares over impressions - company only
              "impressionCount": 0,   // Impressions on a post - company only
              "likeBy": [
                  "urn:li:person:Z_yXaxh_AB" // Look up the user with the brands endpoint
              ],
              "likeCount": 1,       // Likes on a count
              "reactions": {        // Get reactions on a LinkedIn share
                  "like": 1,        // "Like in the UI
                  "praise": 2,      // "Celebrate" in the UI
                  "maybe": 3,       // "Curious" in the UI
                  "empathy": 3,     // "Love" in the UI
                  "interest": 2,    // "Insightful" in the UI
                  "appreciation": 5 // "Support" in the UI
              },
              "shareCount": 0,        // Shares on a post - company only
              "totalFirstLevelComments": 1, // COunt of the firt level comments
              "uniqueImpressionsCount": 0,    // Unique impressions for a post - company only
              "videoViews": 1         // Number of times video viewed - company only
          },
          "lastUpdated": "2022-04-23T18:44:29.778Z",
          "nextUpdate": "2022-04-23T19:19:29.778Z"
      },
       /* Personal LinkedIn Account Example. Past 12 months, using a rolling 12-month window. */
      "linkedin": {
          "id": "urn:li:share:7221186087895920444",
          "type": "personal",
          "analytics": {
              "commentCount": 12,             // Comments count
              "comments": [
                  "urn:li:comment:(urn:li:activity:7221186088390799360,7224469537784479744)"
              ],
              "commentsState": "OPEN",
              "engagement": 0.07,             // Organic clicks, likes, comments, and shares over impressions
              "impressionCount": 1543,        // Impressions on the post
              "likeBy": [
                  {
                      "from": {
                          "name": "John Smith",
                          "id": "qDyUWJx2s",
                          "url": "https://www.linkedin.com/in/js",
                          "description": "Business Analyst at Ayrshare"
                      },
                      "media": {
                          "id": "urn:li:image:C4D03AQG_8MpwM6tDzw",
                          "mediaExpiresSeconds": 1728518400000,
                          "url": "https://media.licdn.com/dms/image/C4D03AQG_8MpwM6tDzw"
                      },
                      "platform": "linkedin",
                      "profileImageUrl": "https://media.licdn.com/dms/image/C4D03AQG_8MpwM",
                      "userName": "js",
                      "originalUrn": "urn:li:like:(urn:li:person:qDyUWJxqIO,urn:li:activity:722118608839074444)",
                      "type": "like"
                  }
              ],
              "likeCount": 87,                // Reaction count
              "reactions": {        // Per-type reaction breakdown
                  "like": 60,
                  "praise": 15,
                  "maybe": 0,
                  "empathy": 12,
                  "interest": 0,
                  "appreciation": 0
              },
              "share": "urn:li:activity:7221186088390794444",
              "shareCount": 9,                // Reshares of the post
              "totalFirstLevelComments": 1,
              "uniqueImpressionsCount": 1201, // Unique members reached (MEMBERS_REACHED)
              "videoViewers": 280,       // Video posts only
              "videoViews": 320,         // Video posts only
              "videoWatchTimeMs": 451000 // Video posts only
          },
          "lastUpdated": "2024-08-04T22:46:15.660Z",
          "nextUpdate": "2024-08-04T22:57:15.660Z"
      },
      "pinterest": {
          "id": "718464946813167315",    // Pinterest Social Post ID
          "postUrl": "https://www.pinterest.com/pin/718464946813167315/",
          "analytics": {
              "altText": "Hello",
              "boardId": "480126078963936788",
              "boardOwner": {
                  "username": "johnsmith"
              },
              "boardSectionId": 12232,
              "createdAt": "2024-10-20T06:25:08",
              "creativeType": "REGULAR",
              "description": "The most amazing board",
              "dominantColor": "#4e6279",
              "hasBeenPromoted": false,
              "id": "480126010294119688",
              "impression": 26,
              "isOwner": true,
              "isStandard": true,
              "link": "https://www.mywebsite.com",
              "media": {
                  "media_type": "image",
                  "images": {
                      "150x150": {
                          "width": 150,
                          "height": 150,
                          "url": "https://i.pinimg.com/150x150/2b/86/64/2b.jpg"
                      },
                      "400x300": {
                          "width": 400,
                          "height": 300,
                          "url": "https://i.pinimg.com/400x300/2b/86/64/2b.jpg"
                      },
                      "600x": {
                          "width": 564,
                          "height": 296,
                          "url": "https://i.pinimg.com/564x/2b/86/64/2b.jpg"
                      },
                      "1200x": {
                          "width": 1200,
                          "height": 630,
                          "url": "https://i.pinimg.com/1200x/2b/86/64/2b.jpg"
                      }
                  }
              },
              "note": "",
              "outboundClick": 4,
              "parentPinId": 23233,
              "pinClick": 2,
              "pinMetrics": null,
              "productTags": [],
              "profileVisit": 5, // Available for images only
              "quartile95PercentView": 4,
              "save": 1,
              "saveRate": 1,
              "title": "Looking great",
              "totalComments": 2,
              "totalReactions": 1,
              "userFollow": 1, // Available for images only

              /* Available for videos */
              "video10sView": 3,
              "videoAvgWatchTime": 0,
              "videoMrcView": 0,
              "videoStart": 0,
              "videoV50WatchTime": 0
          },
          "lastUpdated": "2022-04-23T18:44:29.778Z",
          "nextUpdate": "2022-04-23T19:19:29.778Z"
      },
      "reddit": {
          "id": "182zitr",
          "postUrl": "https://www.reddit.com/r/test/comments/182zitr/reddit_post_title/",
          "analytics": {
              "author": "ayrshare",
              "created": "2023-11-24T19:10:06.000Z",
              "permalink": "/r/test/comments/182zitr/reddit_post_title/",
              "subreddit": "test",
              "title": "Reddit Post Title",
              "ups": 2,
              "upvoteRatio": 1,
              "url": "https://www.reddit.com/r/test/comments/182zitr/reddit_post_title/"
          },
          "lastUpdated": "2023-11-24T19:10:41.635Z",
          "nextUpdate": "2023-11-24T19:21:41.635Z"
      },
      "snapchat": {
        "id": "490edf20-4068-5bab-bf65-a5882b1ezuec",
        "postUrl": "https://www.snapchat.com/add/chrisalpha1980/490edf20-4068-5bab-bf65-a5882b1ezuecc",
        "analytics": [
            {
                "avgViewTime": 5230,        // Average view time in milliseconds
                "completes": 187,           // Number of times the post was played to completion
                "interactions": 42,         // Number of times a user interacted with an asset. These include: tap forwards/backwards, swipe-away
                "mediaId": "490edf20-4068-5bab-bf65-a5882b1ezuec",
                "replies": 8,               // Number of replies to this snap/story
                "shares": 12,               // Number of times this post has been shared
                "snapCombinedUniques": 642, // Combined total of snapPaidUniques and storyUniques
                "snapCombinedViews": 829,   // Combined total of snapPaidViews and views
                "snapPaidUniques": 174,     // The sum of paid uniques for ads promoting the snaps within the Public Story
                "snapPaidViews": 203,       // The sum of paid impression for ads promoting the snaps within the Public Story
                "storyAvgViewTime": 4870,   // The calculation of the storyViewTime divided by storyUniques (milliseconds)
                "storyFavorites": 28,       // Number of times the post has been liked
                "storySubscribes": 5,       // Number of subscribe events occuring on the story post
                "storyUniques": 468,        // Unique users who have viewed a story/snap within a story
                "storyViewTime": 2279160,   // Milliseconds a story & snap in story asset has been viewed
                "storyViews": 626,          // Views for Story container
                "swipeDowns": 15,           // Number of swipe downs on this post
                "swipeUps": 23,             // Number of swipe ups on this post
                "uniqueSessions": 512,      // Number of unique sessions an asset has been engaged in
                "viewTime": 3264000,        // Milliseconds this post has been viewed
                "viewers": 598,             // Number of unique users who have viewed this post
                "views": 712                // Number of times an asset has been viewed
            }
        ],
        "lastUpdated": "2025-05-21T11:14:40.570Z",
        "nextUpdate": "2025-05-21T11:25:40.570Z"
      },
      "threads": {
        "id": "17890643139123701",
        "postUrl": "https://www.threads.com/@ayrshare/post/DI4nmXrNQA1",
        "analytics": {
            "views": 2,
            "likes": 1,
            "replies": 1,
            "reposts": 0,
            "shares": 0,
            "quotes": 0
        },
        "lastUpdated": "2025-04-25T22:41:05.752Z",
        "nextUpdate": "2025-04-25T22:52:05.752Z"
      },
      "tiktok": {
          "id": "7034682002927550598",    // TikTok Social Post ID
          "postUrl": "https://www.tiktok.com/@borneild/video/7034682002927550598?utm_campaign=tt4d_open_api&utm_source=awawnhyictaos7o",
          "analytics": {
              "audienceCities": [  // Available 24-48 hours after posting. City distribution of video viewers for the top 10 cities. Must be an active post. See endpoint details.
                  {
                    "city_name": "US Teton County",
                    "percentage": 3.1
                  },
                  {
                    "city_name": "US Queens",
                    "percentage": 6.3
                  }
              ],
              "audienceCountries": [  // Available 24-48 hours after posting. Country distribution of video viewers for the top 10 countries. Must be an active post. See endpoint details.
                  {
                    "country": "GB",
                    "percentage": 0.0029
                  },
                  {
                    "country": "US",
                    "percentage": 0.9604
                  }
              ],
              "audienceGenders": [    // Updated by TikTok every 24-48 hours.
                {
                    "percentage": 0.25,
                    "gender": "Female"
                },
                {
                    "percentage": 0.5,
                    "gender": "Male"
                },
                {
                    "percentage": 0.25,
                    "gender": "Other"
                }
              ],
              "audienceTypes": [
                {
                    "percentage": 0,
                    "type": "FOLLOWER_PERCENT"
                },
                {
                    "percentage": 0,
                    "type": "NEW_VIEWER"
                },
                {
                    "percentage": 0,
                    "type": "NON_FOLLOWER_PERCENT"
                },
                {
                    "percentage": 0,
                    "type": "RETURN_VIEWER"
                }
              ],
              "averageTimeWatched": 5.6679,    // Available 24-48 hours after posting.
              "commentsCount": 23,             // Total number of lifetime comments. Available 24-48 hours after posting.
              "created": "2022-08-09T15:08:22Z",
              "embedUrl": "https://www.tiktok.com/embed/v2/7129893524253756713",
              "fullVideoWatchedRate": 0.0866, // Percentage of views that completed watching the full video. Available 24-48 hours after posting.
              "impressionSources": [          // Different sources for the impressions, ranked from the largest contribution to the smallest. Available 24-48 hours after posting.
                  {
                      "impression_source": "Search",
                      "percentage": 0.0217
                  },
                  {
                      "impression_source": "Sound",
                      "percentage": 0
                  },
                  {
                      "impression_source": "Follow",
                      "percentage": 0
                  },
                  {
                      "impression_source": "For You",
                      "percentage": 0.917
                  },
                  {
                      "impression_source": "Hashtag",
                      "percentage": 0
                  },
                  {
                      "impression_source": "Personal Profile",
                      "percentage": 0
                  }
              ],
              "likeCount": 22,  // Total number of lifetime likes. Available 24-48 hours after posting.
              "mediaType": "video",
              "musicTitle": "♬ original sound - tiff",// If available
              "musicUrl": "https://www.tiktok.com/music/original-sound-6689804660171082501?refer=embed", // If available
              "name": "Mackly",
              "post": "Scramble up ur name & I'll try to guess it😍❤️ #foryoupage #petsoftiktok #aesthetic",
              "postUrl": "https://www.tiktok.com/@tiktoktime/video/7129893524253756713?utm_campaign=tt4d_open_api&utm_source=awawnhyictaos7o7",
              "reach": 252,     // The number of people who watched your published content at least once. Available 24-48 hours after posting.
              "shareCount": 1,  // Total number of lifetime shares. Available 24-48 hours after posting.
              "tags": [    // Tags included in the description
                  {
                      "tag": "#foryoupage",
                      "url": "https://www.tiktok.com/tag/foryoupage"
                  },
                  {
                      "tag": "#petsoftiktok",
                      "url": "https://www.tiktok.com/tag/petsoftiktok"
                  },
                  {
                      "tag": "#aesthetic",
                      "url": "https://www.tiktok.com/tag/aesthetic"
                  }
              ],
              "thumbnailHeight": 576,
              "thumbnailUrl": "https://p16-sign.tiktokcdn-us.com/obj/tos-useast5-p-0068-tx",
              "thumbnailWidth": 1006,
              "url": "https://www.tiktok.com/@tiktoktime",
              "videoDuration": 13.984,  // Video duration in seconds.
              "videoViewRetention": [   // This metric indicates how many of your viewers are still watching after a certain amount of time.
                {
                    "percentage": 0.1,
                    "second": "155"
                },
                {
                    "percentage": 0.07,
                    "second": "234"
                }
              ],
              /* Total number of lifetime users who viewed the video. Available 24-48 hours after posting.
                 If the user swipes away from the ad then swipes back, it would be counted as 2 impressions.
                 Therefore, a new video view will be counted again with the new impression session.
              */
              "videoViews": 34
          },
          "lastUpdated": "2022-04-23T18:44:29.778Z",
          "nextUpdate": "2022-04-23T19:19:29.778Z"
      },
      /* Note: if the post was sent as a Twitter Thread, the return will be an array, "twitter": [] */
      "twitter": {
          "id": "1313589441919827982",    // Twitter Social Post ID
          "postUrl": "https://www.twitter.com/myaccount/1313589441919827982",
          "analytics": {
              "created": "2022-09-07T22:12:10.000Z",
              "entities": {
                "urls": [
                    {
                        "start": 77,                                        // Starting character position (inclusive)
                        "end": 96,                                          // Ending character position (exclusive)
                        "url": "https://t.co/abc123",                       // Shortened t.co URL
                        "expandedUrl": "https://www.ayrshare.com/docs",     // Full URL after redirect
                        "displayUrl": "ayrshare.com/docs",                  // User-friendly display version
                        "unwoundUrl": "https://www.ayrshare.com/docs"       // Final destination URL
                    }
                ],
                "hashtags": [
                    {
                        "start": 97,                    // Starting character position (inclusive)
                        "end": 112,                     // Ending character position (exclusive)
                        "tag": "SocialMediaAPI"         // Hashtag text without #
                    }
                ],
                "mentions": [
                    {
                        "start": 113,                   // Starting character position (inclusive)
                        "end": 122,                     // Ending character position (exclusive)
                        "username": "ayrshare"          // Username without @
                    }
                ],
                "cashtags": [
                    {
                        "start": 123,                   // Starting character position (inclusive)
                        "end": 128,                     // Ending character position (exclusive)
                        "tag": "META"                   // Stock symbol without $
                    }
                ],
                "annotations": [
                    {
                        "start": 46,                    // Starting character position (inclusive)
                        "end": 54,                      // Ending character position (exclusive)
                        "probability": 0.9456,          // Confidence score (0.0 to 1.0)
                        "type": "Product",              // Entity type: Person, Place, Product, Organization, Other
                        "normalizedText": "Ayrshare"    // Standardized entity name
                    }
                ]
              },
              "media": [
                  {
                      "width": 1920,
                      "durationMs": 28240,
                      "height": 1080,
                      "mediaKey": "7_1739849636389814272",
                      "previewImageUrl": "https://pbs.twimg.com/ext_tw_video_thumb/1739849636389814272/pu/img/bCkAdkD0R00-ZlkY.jpg",
                      "type": "video",
                      "mediaUrls": [ // available for videos and gifs
                          {
                              "bitRate": 256000,
                              "contentType": "video/mp4",
                              "mediaUrl": "https://video.twimg.com/ext_tw_video/1739849636389814272/pu/vid/avc1/480x270/4RoZCqynednVMFgy.mp4?tag=12"
                          },
                          {
                              "bitRate": 832000,
                              "contentType": "video/mp4",
                              "mediaUrl": "https://video.twimg.com/ext_tw_video/1739849636389814272/pu/vid/avc1/640x360/RYy5iHTIxu7_iyZm.mp4?tag=12"
                          },
                          {
                              "bitRate": 2176000,
                              "contentType": "video/mp4",
                              "mediaUrl": "https://video.twimg.com/ext_tw_video/1739849636389814272/pu/vid/avc1/1280x720/9UpR90ekFA-9Ucxo.mp4?tag=12"
                          },
                          {
                              "contentType": "application/x-mpegURL",
                              "mediaUrl": "https://video.twimg.com/ext_tw_video/1739849636389814272/pu/pl/0AVy2xIOLQcsrEZG.m3u8?tag=12&container=fmp4"
                          }
                      ]
                  }
              ],
              "name": "Wonder World",
              "post": "Just launched our social media campaign using Ayrshare! Check out the API at https://t.co/abc123 #SocialMediaAPI @ayrshare $META",
              "publicMetrics": {              // Organic and paid metrics available publicly. Use this to measure Tweet engagement.
                  "retweetCount": 0,          // Retweets count
                  "quoteCount": 0,            // Times the Tweet was quoted count
                  "likeCount": 0,             // Likes for the Tweet count
                  "replyCount": 0,            // Replies count
                  "quoteCount": 0,            // Times the Tweet was quoted count
                  "bookmarkCount": 0,         // Bookmarks count
                  "impressionCount": 23       // How many times the Tweet has been viewed (not unique by user). A view is counted if any part of the Tweet is visible on the screen.
              },
              "nonPublicMetrics": {          // Organic and paid metrics not available publicly. Not available for Tweets older than 30 days. Use this to determine the total number of impressions generated for the Tweet.
                  "userProfileClicks": 1,    // User profile clicks
                  "engagements": 1,          // How many times the Tweet has been engaged with.
                  "impressionCount": 5,      // How many times the Tweet has been viewed (not unique by user). A view is counted if any part of the Tweet is visible on the screen.
                  "video": {                 // Users who played through to each quartile in a video. This reflects the number of quartile views across all Tweets in which the given video has been posted.
                      "playback25Count": 4,
                      "playback50Count": 2,
                      "playback75Count": 1,
                      "playback0Count": 4,
                      "playback100Count": 1
                  }
              },
              "organicMetrics": {            // Non-paid metrics.  Not available for Tweets older than 30 days. Use this to measure organic engagement for the Tweet.
                  "likeCount": 0,            // Tweet likes
                  "impressionCount": 5,      // How many times the Tweet has been viewed (not unique by user). A view is counted if any part of the Tweet is visible on the screen.
                  "replyCount": 0,           // Replies count
                  "retweetCount": 0,         // R countetweets
                  "userProfileClicks": 1,    // User profile clicks
                  "video": {                 // Users who played through to each quartile in a video. This reflects the number of quartile views across all Tweets in which the given video has been posted.
                      "playback25Count": 4,
                      "playback0Count": 4,
                      "playback100Count": 1,
                      "viewCount": 4,
                      "playback50Count": 2,
                      "playback75Count": 1
                  }
              },
              "poll": {                    // Present if Tweet has a poll
                  "durationMinutes": 5,    // Duration in minutes
                  "endDatetime": "2023-05-29T17:28:05.000Z",
                  "votingStatus": "open", // "open" or "closed"
                  "id": "1663234520718371960",
                  "options": [
                      {
                          "position": 1,
                          "label": "yes",
                          "votes": 3
                      },
                      {
                          "position": 2,
                          "label": "maybe",
                          "votes": 1
                      },
                      {
                          "position": 3,
                          "label": "no",
                          "votes": 0
                      }
                  ]
              },
              "urls": [    // Available for long Tweets only
                  {
                      "start": 866,
                      "end": 889,
                      "url": "https://t.co/3r6xz4hBnM",
                      "expandedUrl": "https://www.cnn.com",
                      "displayUrl": "cnn.com"
                  }
              ],
              "username": "wondrous"
          },
          "lastUpdated": "2022-04-23T18:44:29.778Z",
          "nextUpdate": "2022-04-23T19:19:29.778Z"
      },
      "youtube": {
          "id": "RWJMpOUGicU",            // YouTube Social Post ID
          "postUrl": "https://youtu.be/RWJMpOUGicU",
          "analytics": {
              "averageViewDuration": 6,          // The average length, in seconds, of video playbacks.
              "averageViewPercentage": 92.01,    // The average percentage of a video watched during a video playback.
              "channelTitle": "youtubeHandle",
              "comments": 22,
              "created": "2022-08-15T19:14:44Z",
              "description": "Doubt is not a pleasant condition, but certainty is absurd. - Voltaire",
              "dislikes": 3,
              "estimatedMinutesWatched": 23,    // The number of minutes that users watched videos for the specified channel, content owner, video, or playlist.
              "likes": 54,
              "liveBroadcastDetails": {           // Only present if liveBroadcast is "live" or "upcoming"
                  "activeLiveChatId": "Cg0KC3Ez", // The ID of the currently active live chat attached to this video. Not present if broadcast complete and chat no longer live
                  "actualStartTime": "2023-05-04T10:14:56Z",   // The time that the broadcast actually started.
                  "actualEndTime": "2023-05-04T10:15:15Z",     // The time that the broadcast actually ended.
                  "concurrentViewers": 384343,                 // The number of viewers currently watching the broadcast. Not present if the broadcast has ended.
                  "scheduledEndTime": "2023-05-04T10:15:00Z",  // The time that the broadcast is scheduled to end if a scheduled end time was set.
                  "scheduledStartTime": "2023-05-04T10:15:00Z" // The time that the broadcast is scheduled to begin.
              },
              "liveBroadcast": "live",          // Values: "none", "live", "upcoming"
              "madeForKids": false,
              "privacyStatus": "public",
              "publishedAt": "2023-05-08T12:30:26Z",
              "subscribersGained": 23,        // The number of times that users subscribed to a channel.
              "subscribersLost": 1,           // The number of times that users unsubscribed from a channel.
              "tags": ["sweet", "sour"],      // Tags assigned to video
              "thumbnailUrl": "https://i.ytimg.com/vi/RWJMpOUGicU/default.jpg",
              "title": "Yo time",
              "videosAddedToPlaylists": 2,    // The number of times that videos were added to any YouTube playlists. The videos could have been added to the video owner's playlist or to other channels' playlists.
              "views": 153
          },
          "lastUpdated": "2022-04-23T18:44:29.778Z",
          "nextUpdate": "2022-04-23T19:19:29.778Z"
      },
      "status": "success",
      "code": 200,
      "id": "IHvCLacgPc6hMU9IQ6oK"
  }
  ```

  ```json 200: Backfilled Response theme={"system"}
  {
      "facebook": {
          "id": "104923907983682_108329000309742",
          "postUrl": "https://www.facebook.com/104923907983682_108329000309742",
          "analytics": {
              "commentsCount": 5,
              "likeCount": 23,
              "sharesCount": 12,
              "mediaView": 450,
              "backfilledFrom": "2026-04-08T14:30:00.000Z"
          },
          "lastUpdated": "2026-04-09T10:15:00.000Z",
          "nextUpdate": "2026-04-09T10:26:00.000Z"
      },
      "status": "success",
      "code": 200,
      "id": "IHvCLacgPc6hMU9IQ6oK"
  }
  ```

  ```json 200: Recovered Response theme={"system"}
  {
      "facebook": {
          "id": "104923907983682_108329000309742",
          "postUrl": "https://www.facebook.com/104923907983682_108329000309742",
          "analytics": {
              "commentsCount": 5,
              "likeCount": 23,
              "sharesCount": 12,
              "mediaView": 450,
              "recoveredFrom": "2026-04-08T14:30:00.000Z"
          },
          "lastUpdated": "2026-04-09T10:15:00.000Z",
          "nextUpdate": "2026-04-09T10:26:00.000Z"
      },
      "status": "success",
      "code": 200,
      "id": "IHvCLacgPc6hMU9IQ6oK"
  }
  ```

  ```json 404 - Bad Request theme={"system"}
  /* Often if manually deleted at social network */
  {
    "status": "error",
    "code": 116,
    "id": "N7GAZeJSAYcdCpHSm3xQ", // Ayrshare Post ID
    "facebook": {
      "action": "post",
      "status": "error",
      "code": 186,
      "message": "Post ID not found. Please verify the top level ID returned from the /post endpoint is being sent and the post at the social network has not been deleted.",
      "id": "104619420979033_588326339980968" // Facebook Platform ID
    },
    "instagram": {
      "action": "post",
      "status": "error",
      "code": 186,
      "message": "Post ID not found. Please verify the top level ID returned from the /post endpoint is being sent and the post at the social network has not been deleted.",
      "id": "18349092271045074" // Instagram Platform ID
    },
    "linkedin": {
      "action": "post",
      "status": "error",
      "code": 186,
      "message": "Post ID not found. Please verify the top level ID returned from the /post endpoint is being sent and the post at the social network has not been deleted.",
      "id": "urn:li:share:7038277251594878976" // LinkedIn Platform ID
    },
    "pinterest": {
      "action": "post",
      "status": "error",
      "code": 186,
      "message": "Post ID not found. Please verify the top level ID returned from the /post endpoint is being sent and the post at the social network has not been deleted. Pin not found."
    },
    "twitter": {
      "action": "post",
      "status": "error",
      "code": 186,
      "message": "Could not find tweet with id: [1632511562660433929].",
      "id": "1632511562660433929" // Twitter Platform ID
    },
    "youtube": {
      "action": "post",
      "status": "error",
      "code": 186,
      "message": "Post ID not found. Please verify the top level ID returned from the /post endpoint is being sent and the post at the social network has not been deleted.",
      "id": "rAMFoqZeOGg" // YouTube Platform ID
    },
    "lastUpdated": "2023-03-06T21:59:06.064Z",
    "nextUpdate": "2023-03-06T22:10:06.064Z"
  }
  ```

  ```json 404 - Not Found theme={"system"}
  {
    "action": "analytics",
    "status": "error",
    "code": 186,
    "message": "Post ID not found.",
    "id": "7aVBe0jw27DNwFq92KZ"
  }
  ```
</ResponseExample>
