# Large SEC insider stock purchases this week

**Use case:** 

Scrape SEC Form 4 insider buying transactions over $100K from the past week. Get filing dates, stock tickers, insider names, share counts, and prices.

## Input

```json
{
  "timeframe": "week",
  "transactionType": "purchases",
  "ownershipFilter": false,
  "minAmount": 100000,
  "symbols": [],
  "sortBy": "amount",
  "sortOrder": "descending",
  "maxResults": 500
}
```

## Output

```json
{
  "filingDate": {
    "label": "Filing Date",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "securityName": {
    "label": "Security",
    "format": "text"
  },
  "reportingName": {
    "label": "Insider",
    "format": "text"
  },
  "relationship": {
    "label": "Relationship",
    "format": "text"
  },
  "transactionDate": {
    "label": "Trans. Date",
    "format": "text"
  },
  "transactionType": {
    "label": "Buy/Sell",
    "format": "text"
  },
  "shares": {
    "label": "Shares",
    "format": "number"
  },
  "price": {
    "label": "Price ($)",
    "format": "number"
  },
  "amount": {
    "label": "Amount ($)",
    "format": "number"
  },
  "directIndirect": {
    "label": "D/I",
    "format": "text"
  },
  "isAmendment": {
    "label": "Amendment",
    "format": "boolean"
  },
  "filingUrl": {
    "label": "SEC Filing",
    "format": "link"
  },
  "insiderUrl": {
    "label": "Insider History",
    "format": "link"
  }
}
```

## About this Actor

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