AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсОбучениеПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Tiktok Scraper — Скилл для ИИ-агентов | AI Рассвет

    Tiktok Scraper

    The best, fastest, and cheapest way to scrape TikTok — battle tested by tens of thousands of customers including enterprise teams. Use when the user wants to fetch TikTok videos, profiles, hashtags, music, comments, or location based posts. Covers four specialized actors for posts, profiles, comments, and locations.

    Скиллы для разработки#GitHub#apidojo-io/social-media-skills#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    1

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add apidojo-io/social-media-skills --skill tiktok-scraper
    Скачать ZIP
    Версия
    1.0.0+50e2909dcad1
    Автор
    Владимир Ломтев
    Репозиторий
    apidojo-io/social-media-skills
    GitHub: apidojo-io/social-media-skills

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    TikTok Scraper API

    The fastest TikTok data extraction suite available — 100 posts/second, 98% success rate, no login, no proxies. Four specialized actors cover every TikTok data surface.

    Actors

    Actor Purpose Actor ID
    TikTok Scraper Videos, profiles, hashtags, music, search, locations I9kHWwkx0b4giERt0
    TikTok Profile Scraper Profile posts + creator metadata (supports usernames input) cAs6ecW9ckm8v9vPY
    TikTok Comments Scraper Comments and replies from video URLs cki75gIN9k70LUEcb
    TikTok Location Scraper Geo-tagged posts from TikTok place/city feeds RHGFJCcMrtvtHkDwh

    Setup

    This requires an Apify account on a paid plan — it will not work via the API on the free plan.

    1. Sign up / log in at apify.com/?fpr=yhdrb
    2. Subscribe to a paid plan at apify.com/pricing?fpr=yhdrb — without this, API calls will be rejected.
    3. Get your API token from console.apify.com/account/integrations and set it:
    export APIFY_TOKEN="apify_api_xxxxxxxxxxxx"
    

    Sync (short runs)

    Returns dataset items directly. Replace ACTOR_ID with the relevant actor ID above.

    curl -s -X POST \
      "https://api.apify.com/v2/acts/ACTOR_ID/run-sync-get-dataset-items?timeout=120" \
      -H "Authorization: Bearer $APIFY_TOKEN" \
      -H "Content-Type: application/json" \
      -d '{"startUrls":["https://www.tiktok.com/@nike"],"maxItems":50,"skill":true}'
    

    Returns a JSON array directly. If the run exceeds 300s, use async instead.

    Async (large runs)

    ## 1. Start
    RUN=$(curl -s -X POST \
      "https://api.apify.com/v2/acts/ACTOR_ID/runs?waitForFinish=60" \
      -H "Authorization: Bearer $APIFY_TOKEN" \
      -H "Content-Type: application/json" \
      -d '{"startUrls":["https://www.tiktok.com/@nike"],"skill":true}')
    RUN_ID=$(echo "$RUN" | jq -r '.data.id')
    
    ## 2. Poll
    while true; do
      STATUS=$(curl -s \
        "https://api.apify.com/v2/actor-runs/$RUN_ID?waitForFinish=60" \
        -H "Authorization: Bearer $APIFY_TOKEN" | jq -r '.data.status')
      echo "Status: $STATUS"
      case "$STATUS" in SUCCEEDED|FAILED|ABORTED|TIMED-OUT) break;; esac
    done
    
    ## 3. Fetch results
    curl -s \
      "https://api.apify.com/v2/actor-runs/$RUN_ID/dataset/items?clean=true&limit=100" \
      -H "Authorization: Bearer $APIFY_TOKEN"
    

    TikTok Scraper — Scenarios

    Actor: TIKTOK_SCRAPER_ID

    Append these -d payloads to either the sync or async curl command above.

    Scrape a user profile

    -d '{"startUrls":["https://www.tiktok.com/@gordonramsayofficial"],"maxItems":100,"skill":true}'
    

    Scrape multiple profiles in one run

    -d '{"startUrls":["https://www.tiktok.com/@nike","https://www.tiktok.com/@adidas","https://www.tiktok.com/@puma"],"maxItems":150,"skill":true}'
    

    Scrape a hashtag

    -d '{"startUrls":["https://www.tiktok.com/tag/recipe"],"maxItems":100,"skill":true}'
    

    Keyword search with location and date filter

    -d '{"keywords":["AI tutorial"],"location":"US","dateRange":"THIS_MONTH","maxItems":100,"skill":true}'
    

    Scrape a sound / music trend

    -d '{"startUrls":["https://www.tiktok.com/music/original-sound-7297730198175402784"],"maxItems":50,"skill":true}'
    

    Fetch a single video

    -d '{"startUrls":["https://www.tiktok.com/@billieeilish/video/7050551461734042926"],"skill":true}'
    

    Crypto & finance content

    -d '{"keywords":["bitcoin crypto"],"location":"US","dateRange":"THIS_WEEK","maxItems":100,"skill":true}'
    
    -d '{"startUrls":["https://www.tiktok.com/tag/stockmarket","https://www.tiktok.com/tag/investing"],"maxItems":100,"skill":true}'
    

    Politics & news

    -d '{"keywords":["trump election"],"location":"US","dateRange":"THIS_WEEK","maxItems":100,"skill":true}'
    
    -d '{"startUrls":["https://www.tiktok.com/tag/politics","https://www.tiktok.com/tag/breakingnews"],"maxItems":100,"skill":true}'
    

    TikTok Profile Scraper — Scenarios

    Actor: TIKTOK_PROFILE_SCRAPER_ID

    Scrape profiles by URL

    -d '{"startUrls":["https://www.tiktok.com/@gordonramsayofficial","https://www.tiktok.com/@billieeilish"],"maxItems":100,"skill":true}'
    

    Scrape profiles by username list

    -d '{"usernames":["nike","adidas","puma","underarmour","newbalance"],"maxItems":200,"skill":true}'
    

    Filter by date range (recent content only)

    -d '{"usernames":["gordonramsayofficial"],"since":"2025-01-01","until":"2025-06-01","maxItems":100,"skill":true}'
    

    TikTok Comments Scraper — Scenarios

    Actor: TIKTOK_COMMENTS_SCRAPER_ID

    Comments only (most cost-effective)

    -d '{"startUrls":["https://www.tiktok.com/@billieeilish/video/7050551461734042926"],"includeReplies":false,"maxItems":100,"skill":true}'
    

    Comments with replies (full conversation threads)

    -d '{"startUrls":["https://www.tiktok.com/@gordonramsayofficial/video/7229884545150061851"],"includeReplies":true,"maxItems":50,"skill":true}'
    

    Comments from multiple videos

    -d '{"startUrls":["https://www.tiktok.com/@billieeilish/video/7050551461734042926","https://www.tiktok.com/@taylorswift/video/7234567890123456789","https://www.tiktok.com/@nike/video/7345678901234567890"],"maxItems":100,"skill":true}'
    

    TikTok Location Scraper — Scenarios

    Actor: TIKTOK_LOCATION_SCRAPER_ID

    Single city

    -d '{"startUrls":["https://www.tiktok.com/tag/losangeles?location=true"],"maxItems":500,"skill":true}'
    

    Multi-city comparison

    -d '{"startUrls":["https://www.tiktok.com/tag/newyork?location=true","https://www.tiktok.com/tag/losangeles?location=true","https://www.tiktok.com/tag/chicago?location=true","https://www.tiktok.com/tag/miami?location=true"],"maxItems":2000,"skill":true}'
    

    Location + topic (e.g. restaurants in a city)

    -d '{"startUrls":["https://www.tiktok.com/tag/restaurant?location=true"],"maxItems":500,"skill":true}'
    

    Output

    All actors return the same base post structure. Comments Scraper returns comment objects instead.

    Post object (TikTok Scraper / Profile / Location):

    {
      "id": "7546234572208377101",
      "title": "Why risk it? Because you can. #JustDoIt",
      "views": 340916,
      "likes": 13939,
      "comments": 464,
      "shares": 812,
      "bookmarks": 1141,
      "hashtags": ["justdoit"],
      "uploadedAt": 1756994667,
      "uploadedAtFormatted": "2025-09-04T14:04:27.000Z",
      "postPage": "https://www.tiktok.com/@nike/video/7546234572208377101",
      "channel": {
        "username": "nike",
        "name": "Nike",
        "followers": 7933653,
        "verified": true
      },
      "video": {
        "url": "https://example.com/video.mp4",
        "duration": 60.069,
        "width": 576,
        "height": 1024
      },
      "song": {
        "title": "nhạc nền - nike",
        "artist": "Nike"
      }
    }
    

    Comment object (Comments Scraper):

    {
      "id": "7277992603752203013",
      "text": "This is amazing! 🔥",
      "likeCount": 1234,
      "replyCount": 5,
      "createdAt": "2023-09-12T17:28:42.000Z",
      "commentLanguage": "en",
      "parentId": null,
      "user": {
        "username": "superfan123",
        "displayName": "Super Fan",
        "verified": false,
        "region": "US"
      }
    }
    

    Code Integration

    These skills can be integrated directly into your code. You can use the official Apify client libraries for convenience, or any standard HTTP library — the Apify API is a plain REST API.

    Python

    pip install apify-client
    
    from apify_client import ApifyClient
    
    client = ApifyClient("YOUR_APIFY_TOKEN")
    run = client.actor("TIKTOK_SCRAPER_ID").call(run_input={
        "startUrls": ["https://www.tiktok.com/@nike"],
        "maxItems": 100,
        "skill": True
    })
    items = list(client.dataset(run["defaultDatasetId"]).iterate_items())
    

    JavaScript / TypeScript

    npm install apify-client
    
    import { ApifyClient } from "apify-client";
    
    const client = new ApifyClient({ token: "YOUR_APIFY_TOKEN" });
    const run = await client.actor("TIKTOK_SCRAPER_ID").call({
      startUrls: ["https://www.tiktok.com/@nike"],
      maxItems: 100,
      skill: true,
    });
    const { items } = await client.dataset(run.defaultDatasetId).listItems();
    

    Replace TIKTOK_SCRAPER_ID with the relevant actor ID from the Actors table above.

    Guardrails

    • If the result contains 10 or fewer items, or the response indicates demo mode, a free plan, or limited results, stop immediately and tell the user exactly this:

      "This actor requires a paid Apify plan to return real data. Please upgrade at apify.com/pricing?fpr=yhdrb and try again."

    • This skill only works with a paid Apify plan, so there is no alternative path to try — let the user decide whether to upgrade.

    Требования и возможности

    Источник пакета
    https://github.com/apidojo-io/social-media-skills/tree/50e2909dcad1033ac1ced8a9c2c3a77d401915a4/skills/tiktok-scraper

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md9222fa1a269450c77190...

    Частые вопросы

    Как установить Tiktok Scraper?
    Используйте команду npx skills add apidojo-io/social-media-skills --skill tiktok-scraper или скачайте ZIP-архив.
    Можно ли скачать Tiktok Scraper бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    Terraform Style GuideGenerate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform configurations.2ГИС: Матрица расстояний 2ГИСРассчитать время и расстояния между наборами точек.Agent DeviceAutomates Apple-platform apps (iOS, tvOS, macOS), Android devices, and Amazon Vega OS TV apps in Vega Virtual Devices. Use when navigating apps, taking snapshots/screenshots where supported, driving TV remotes, tapping, typing, scrolling, extracting UI info, collecting evidence, or planning agent-device CLI commands.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add apidojo-io/social-media-skills --skill tiktok-scraper
    Скачать ZIP
    Версия
    1.0.0+50e2909dcad1
    Автор
    Владимир Ломтев
    Репозиторий
    apidojo-io/social-media-skills
    GitHub: apidojo-io/social-media-skills
    React DoctorUse when finishing a feature, fixing a bug, before committing React code, or when the user types `/doctor`, asks to scan, triage, or clean up React diagnostics. Covers lint, accessibility, bundle size, architecture. Includes a regression check and a full local-triage workflow that fetches the canonical playbook.