# Proxy Strategy Audit for Scraping

**Use case:** 

Audit several target URLs across countries and browser modes to choose the cheapest working scraping access strategy.

## Input

```json
{
  "urls": [
    "https://www.google.com/search?q=web+scraping",
    "https://www.linkedin.com",
    "https://www.walmart.com"
  ],
  "countryCode": "US",
  "includeBrowserTest": true,
  "timeoutSecs": 60
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "verdict": {
    "label": "Verdict"
  },
  "blockingType": {
    "label": "Blocking Type"
  },
  "bestMethod": {
    "label": "Best Method"
  },
  "httpDirectStatus": {
    "label": "HTTP Direct"
  },
  "httpDatacenterStatus": {
    "label": "HTTP DC Proxy"
  },
  "httpResidentialStatus": {
    "label": "HTTP Res Proxy"
  },
  "browserStatus": {
    "label": "Browser"
  },
  "recommendation": {
    "label": "Recommendation"
  }
}
```

## About this Actor

This example demonstrates how to use [Anti-Blocking Diagnostics](https://apify.com/automation-lab/anti-blocking-diagnostics) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/anti-blocking-diagnostics) to learn more, explore other use cases, and run it yourself.