
Contact Details Scraper
Pricing
Pay per event

Contact Details Scraper
Free email extractor and lead scraper to extract and download emails, phone numbers, Facebook, Twitter, LinkedIn, and Instagram profiles from any website. Extract contact information at scale from lists of URLs and download the data as Excel, CSV, JSON, HTML, and XML.
3.7 (37)
Pricing
Pay per event
484
Total users
33K
Monthly users
1.5K
Runs succeeded
>99%
Issues response
2.2 days
Last modified
5 days ago
set memory usage through api call.
Closed
Trying to set the memory usage via guzzle HTTP post request.
$client->post('acts/vdrmota~contact-info-scraper/run-sync-get-dataset-items', [
'json' => ['startUrls' => [['url' => $websites[0]]],'maxDepth' => 1,"maxRequests" => 4,"maxRequestsPerStartUrl" => 4,"options" => [['memoryMbytes' => 16384]],],'query' => [ 'waitForFinish' => 30 ],]),
this isn't working. How do you set the memory usage?

Hello,
The "options" are passed as query parameters, not body. So e.g. acts/vdrmota~contact-info-scraper/run-sync-get-dataset-items?memory= 16384
. https://docs.apify.com/api/v2/#/reference/actor-tasks/run-task-synchronously-and-get-dataset-items/run-task-synchronously-and-get-dataset-items-(post)