{
  "openapi": "3.0.1",
  "info": {
    "title": "Likee Scraper",
    "description": "The most used Likee scraper on Apify. Video stats, profiles and creator analytics: views, likes, comments, shares, engagement rate, hashtags, music. Monitor mode returns only new videos; filter by views, engagement or date. Share links also return a direct .mp4. No API key needed.",
    "version": "1.1",
    "x-build-id": "C10d7fjHFOYZuLK5O"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/sashaebashu~likee-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-sashaebashu-likee-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/sashaebashu~likee-scraper/runs": {
      "post": {
        "operationId": "runs-sync-sashaebashu-likee-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/sashaebashu~likee-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-sashaebashu-likee-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "startUrls": {
            "title": "Likee Video URLs",
            "type": "array",
            "description": "List of Likee video URLs to scrape. Supports https://likee.video/v/VIDEO_ID, https://l.likee.video/v/VIDEO_ID, https://likee.video/@username/video/POST_ID, and the short form `username/postId`.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "urls": {
            "title": "Video URLs (text)",
            "type": "array",
            "description": "Alternative plain-text list of Likee video URLs. Also accepts the short form `username/postId` (for example `itz.danila/7674635972611830810`) — that pulls exactly that one video out of the author's profile and costs a single result, instead of scraping the whole profile to reach it. A post id on its own cannot be resolved: Likee provides no way to find its author, so always pair it with the username.",
            "items": {
              "type": "string"
            }
          },
          "profileUrls": {
            "title": "Profile URLs",
            "type": "array",
            "description": "List of Likee profile URLs to scrape videos from. Example: https://likee.video/@username. All videos from the profile will be collected and scraped.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "findInProfile": {
            "title": "Find a video inside a profile",
            "type": "string",
            "description": "Profile URL or handle to search, for example `itz.danila`. Use this when you can see a video in the Likee app but have no link that opens in a browser: give the profile plus the caption or the date below, and only the matching video is returned — one result, not the whole profile."
          },
          "findByCaption": {
            "title": "...whose caption contains",
            "type": "string",
            "description": "Part of the video's caption, case-insensitive. 99% of videos carry one and they are almost always unique, so a few words are enough."
          },
          "findByDate": {
            "title": "...posted on (YYYY-MM-DD)",
            "type": "string",
            "description": "The publish date, e.g. 2026-08-16. Most creators post once or twice a day, so a date alone usually pins it down. Can be combined with the caption."
          },
          "findAllMatches": {
            "title": "Return every match",
            "type": "boolean",
            "description": "Off: stops at the first match, which is the cheapest and fastest. On: keeps walking and returns every video that matches (useful with a date only).",
            "default": false
          },
          "maxVideosPerProfile": {
            "title": "Max Videos per Profile",
            "minimum": 1,
            "maximum": 3000,
            "type": "integer",
            "description": "Maximum number of videos to collect from each profile page. The scraper scrolls the profile to load more videos. Large profiles hold well over 500 videos — this account has 744 going back to 2022 — so raise this if you need the older ones.",
            "default": 30
          },
          "profileVideoSorting": {
            "title": "Profile Video Sorting",
            "enum": [
              "latest",
              "popular"
            ],
            "type": "string",
            "description": "How to sort videos on the profile page before scraping. 'Latest' collects newest videos first, 'Popular' collects most viewed videos first.",
            "default": "latest"
          },
          "onlyNewVideos": {
            "title": "Only new videos since the last run",
            "type": "boolean",
            "description": "Turns this into a monitor. The first run returns everything and becomes the baseline; every run after that returns only videos it has never seen for this exact set of inputs. Put it on a schedule and each run costs you only what actually changed.",
            "default": false
          },
          "includeProfileSummary": {
            "title": "Add a profile summary row",
            "type": "boolean",
            "description": "Adds one extra row per profile: followers, videos analysed, posts per week, average and median views, average likes/comments/shares, average engagement rate, views-per-follower and the best video of those read. Computed over every video read, so filters and incremental mode don't distort it.",
            "default": true
          },
          "publishedAfter": {
            "title": "Published after",
            "type": "string",
            "description": "Only videos published on or after this date, e.g. 2026-01-01. Videos with no publish date are excluded when a date filter is set."
          },
          "publishedBefore": {
            "title": "Published before",
            "type": "string",
            "description": "Only videos published on or before this date, e.g. 2026-08-01."
          },
          "minViews": {
            "title": "Minimum views",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos below this view count. Filtered-out videos are never written, so you are not charged for them.",
            "default": 0
          },
          "minLikes": {
            "title": "Minimum likes",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos below this like count.",
            "default": 0
          },
          "minComments": {
            "title": "Minimum comments",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos below this comment count.",
            "default": 0
          },
          "minShares": {
            "title": "Minimum shares",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos below this share count.",
            "default": 0
          },
          "minEngagementRate": {
            "title": "Minimum engagement rate (%)",
            "minimum": 0,
            "type": "integer",
            "description": "Skip videos whose engagement rate — (likes + comments + shares) / views — is below this percentage.",
            "default": 0
          },
          "maxItems": {
            "title": "Max Videos",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Maximum number of videos to scrape in a single run (across all inputs). Helps control costs and run time.",
            "default": 100
          },
          "engagementScore": {
            "title": "Add engagement score (vs author's median)",
            "type": "boolean",
            "description": "Score each video against its author's OWN median reach, so standout posts surface regardless of the creator's size. Adds authorMedianViews, viewsVsAuthorMedian and engagementVsAuthorMedian to each row (values > 1 beat the author's typical performance). Best with profile URLs (many videos per author). Off by default.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Select proxies to use for scraping. Residential proxies are recommended for best results."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}