# Scrape Onion Security Research Pages

**Use case:** 

Scrape Onion Security Research Pages over TOR to extract titles, links, and visible public page content.

## Input

```json
{
  "urls": [],
  "queries": [
    "security forum"
  ],
  "maxItems": 10,
  "selectors": [
    {
      "name": "heading",
      "selector": "h1:first-of-type",
      "single": true
    },
    {
      "name": "links",
      "selector": "a::attr(href)"
    }
  ]
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "fields": {
    "label": "Fields",
    "format": "object"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "searchTitle": {
    "label": "Search Title",
    "format": "text"
  },
  "searchDescription": {
    "label": "Search Description",
    "format": "text"
  },
  "statusCode": {
    "label": "Status",
    "format": "number"
  },
  "error": {
    "label": "Error",
    "format": "text"
  },
  "html": {
    "label": "HTML",
    "format": "html"
  }
}
```

## About this Actor

This example demonstrates how to use [TOR Scraper - Dark Web & .onion Site Data Extractor](https://apify.com/igolaizola/tor-dark-web-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/igolaizola/tor-dark-web-scraper) to learn more, explore other use cases, and run it yourself.