# Detect Exposed API Keys on the Dark Web

**Use case:** 

Crawl specific dark web sources to identify inadvertently exposed API keys or sensitive development credentials. Prevent unauthorized access to your systems and

## Input

```json
{
  "mode": "crawl",
  "search": "API_KEY_TYPE OR 'authorization token'",
  "startUrls": [
    {
      "url": "http://darkweb_forum_1.onion/"
    },
    {
      "url": "http://darkweb_pastebin.onion/"
    }
  ],
  "maxDepth": 1,
  "maxPages": 60,
  "maxItems": 100,
  "extractEmails": true,
  "extractPhones": true,
  "extractCryptoAddresses": true,
  "extractSocialHandles": true,
  "extractApiKeys": true
}
```

## Output

```json
{
  "sourceUrl": {
    "label": "Source URL",
    "format": "text"
  },
  "title": {
    "label": "Page Title",
    "format": "text"
  },
  "emails": {
    "label": "Emails",
    "format": "text"
  },
  "phones": {
    "label": "Phones",
    "format": "text"
  },
  "cryptoAddresses": {
    "label": "Crypto Addresses",
    "format": "text"
  },
  "searchKeywordFound": {
    "label": "Keyword Found",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Darkweb Scraper](https://apify.com/crawlerbros/darkweb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/darkweb-scraper) to learn more, explore other use cases, and run it yourself.