# Monitor for Leaked API Keys and Credentials

**Use case:** 

Proactively scan paste sites for accidental exposure of critical API keys and access credentials. This helps prevent security breaches and maintains the integri

## Input

```json
{
  "searchKeywords": [
    "stripe_api_key",
    "aws_access_key_id",
    "github_token",
    "jwt_secret",
    "client_secret"
  ],
  "sources": [
    "pastebin",
    "gist",
    "github",
    "gitlab"
  ],
  "maxItemsPerSource": 20
}
```

## Output

```json
{
  "source": {
    "label": "Source",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "matchedKeyword": {
    "label": "Keyword",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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