# Travel Advisory Country Monitor

**Use case:** 

Build a country watchlist monitor for State Department travel advisory levels, issued dates, risk tags, and summaries.

## Input

```json
{
  "startUrl": "https://travel.state.gov/en/international-travel/travel-advisories.html",
  "countryNames": [
    "Mexico",
    "France",
    "Japan",
    "United Kingdom of Great Britain and Northern Ireland"
  ],
  "maxItems": 25,
  "includeDetails": true
}
```

## Output

```json
{
  "country": {
    "label": "Country"
  },
  "advisoryLevel": {
    "label": "Level"
  },
  "advisoryLevelText": {
    "label": "Level text"
  },
  "dateIssuedIso": {
    "label": "Date issued"
  },
  "riskIndicators": {
    "label": "Risk indicators"
  },
  "guidance": {
    "label": "Guidance"
  },
  "summary": {
    "label": "Summary"
  },
  "detailUrl": {
    "label": "Detail URL"
  },
  "lastUpdatedIso": {
    "label": "Last updated"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [US Travel Advisories Scraper](https://apify.com/automation-lab/us-travel-advisories-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/us-travel-advisories-scraper) to learn more, explore other use cases, and run it yourself.