Available endpoints (4)

Setup and exact call parameters for AI Agents
I want to use the TikTok Scraper service on Fast Marketplace.

## Setup (skip if you already have Fast Marketplace set up)
1. Open the marketplace skill: https://marketplace.fast.xyz/skill.md
2. Fund a Fast wallet on mainnet.
3. Choose the paid TikTok route that matches your workflow.
4. Keep the returned job token and poll the marketplace job route for completion.

## Available Endpoints

### Hashtag Posts ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-tiktok/hashtag-posts" \
  -H "Content-Type: application/json" \
  -d '{
  "hashtags": [
    "aiagents"
  ],
  "resultsPerPage": 25
}'

Good for topical monitoring and trend discovery around a single hashtag cluster.

### Profile Posts ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-tiktok/profile-posts" \
  -H "Content-Type: application/json" \
  -d '{
  "profiles": [
    "@example"
  ],
  "profileSorting": "latest",
  "resultsPerPage": 25,
  "excludePinnedPosts": false,
  "profileScrapeSections": [
    "videos"
  ]
}'

Use this when you know the creator handle and want the latest or most popular profile videos.

### Search Posts ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-tiktok/search-posts" \
  -H "Content-Type: application/json" \
  -d '{
  "searchQueries": [
    "fast wallet"
  ],
  "searchSection": "/video",
  "searchSorting": "0",
  "resultsPerPage": 25
}'

This route is the best entry point for generic TikTok keyword discovery.

### Video Details ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-tiktok/video-details" \
  -H "Content-Type: application/json" \
  -d '{
  "postURLs": [
    "https://www.tiktok.com/@example/video/7534061113365859586"
  ],
  "resultsPerPage": 10,
  "scrapeRelatedVideos": false
}'

Use this for direct video lookups or when you want to branch into related video discovery.

For paid endpoints: the first call returns 402. Authorize payment with your Fast wallet and retry with the payment signature header.
Have a request?

Suggest marketplace coverage