$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "targets": [
< {
< "id": "sec-rss",
< "name": "SEC Press Releases",
< "jurisdiction": "US-Federal",
< "regulator": "SEC",
< "domain": "securities",
< "criticality": "high",
< "owner": "Legal / Compliance",
< "tags": [
< "securities",
< "federal"
< ],
< "feedUrl": "https://www.sec.gov/news/pressreleases.rss"
< },
< {
< "id": "fda-recalls",
< "name": "FDA Recalls & Safety",
< "jurisdiction": "US-Federal",
< "regulator": "FDA",
< "domain": "health",
< "criticality": "high",
< "owner": "Regulatory Affairs",
< "tags": [
< "health",
< "safety"
< ],
< "feedUrl": "https://www.fda.gov/about-fda/contact-fda/stay-informed/rss-feeds/recalls/rss.xml"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/acts/taroyamada~regulatory-change-monitor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'