Sherlock

Sherlock

🔎 Hunt down social media accounts by username across social networks using open-source project https://github.com/sherlock-project/sherlock

SOCIAL_MEDIAApify

Sherlock Actor on Apify

Sherlock Actor

This Actor wraps the Sherlock Project to provide serverless username reconnaissance across social networks in the cloud. It helps you find usernames across multiple social media platforms without installing and running the tool locally.

Usage

Apify Console

  1. Go to the Apify Actor page
  2. Click "Run"
  3. In the input form, fill in Username(s) to search for
  4. The Actor will run and produce its outputs in the default datastore

Apify CLI

1apify call YOUR_USERNAME/sherlock --input='{
2  "usernames": ["johndoe", "janedoe"]
3}'

Using Apify API

1curl --request POST \
2  --url "https://api.apify.com/v2/acts/YOUR_USERNAME~sherlock/run" \
3  --header 'Content-Type: application/json' \
4  --header 'Authorization: Bearer YOUR_API_TOKEN' \
5  --data '{
6  "usernames": ["johndoe", "janedoe"],
7  }
8}'

Input Parameters

The Actor accepts a JSON schema with the following structure:

FieldTypeRequiredDefaultDescription
usernamesarrayYes-List of usernames to search for
usernames[]stringYes"json"Username to search for

Example Input

1{
2  "usernames": ["techuser", "designuser"],
3}

Output

The Actor provides three types of outputs:

Dataset Record*

FieldTypeRequiredDescription
usernamestringYesUsername the search was conducted for
linksarrrayYesArray with found links to the social media
links[]stringNoURL to the account

Example Dataset Item (JSON)

1{
2  "username": "johndoe",
3  "links": [
4    "https://github.com/johndoe" 
5  ]
6}

Performance & Resources

  • Memory Requirements:
    • Minimum: 512 MB RAM
    • Recommended: 1 GB RAM for multiple usernames
  • Processing Time:
    • Single username: ~1-2 minutes
    • Multiple usernames: 2-5 minutes
    • Varies based on number of sites checked and response times

For more help, check the Sherlock Project documentation or raise an issue in the Actor's repository.

Frequently Asked Questions

Is it legal to scrape job listings or public data?

Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.

Do I need to code to use this scraper?

No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.

What data does it extract?

It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.

Can I scrape multiple pages or filter by location?

Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.

How do I get started?

You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!