
Fast TikTok API (free-watermark videos)
Pricing
$38.00/month + usage

Fast TikTok API (free-watermark videos)
Fastest TikTok API for Trend, Hashtag, Search, Music, User, Comment. Real-time, authentic data. No pre-built databases. Provides no-watermark video download links.
5.0 (3)
Pricing
$38.00/month + usage
33
Total users
1.2k
Monthly users
94
Runs succeeded
>99%
Issue response
3.4 hours
Last modified
5 days ago
How can I specify the memory of an actor when I run an action with run-sync-get-dataset-items?
Closed
How can I specify the memory of an actor when I run an action with run-sync-get-dataset-items?
Here is my current code:
const APIFY_API_URL = https://api.apify.com/v2/acts/novi~fast-tiktok-api/run-sync-get-dataset-items?token=***
;
const APIFY_HEADERS = {
'Content-Type': 'application/json',
};
const APIFY_DATA = {
limit: 100,
proxyConfiguration: {
useApifyProxy: true,
apifyProxyGroups: ['RESIDENTIAL'],
},
type: 'USER',
url: https://www.tiktok.com/@${username}
,
};
const response = await axios.post(APIFY_API_URL, APIFY_DATA, {headers: APIFY_HEADERS,});
I've tried adding runOptions with memoryMbytes: 256 and memory: 256, but it is not working. How can I correctly specify the memory for the actor via an api call?

Hello, you can put &memory=256
in your URL. Please try it and let me know