$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "companies": [
< {
< "name": "Bright Smile Dental Clinic",
< "description": "A friendly dental clinic offering checkups, cleanings, and orthodontist services for the whole family.",
< "tags": [
< "dental",
< "healthcare"
< ]
< },
< {
< "name": "DentaFlow",
< "description": "SaaS practice management software platform for dentists and dental clinics, built as a cloud app with an API.",
< "tags": [
< "software",
< "saas"
< ]
< },
< {
< "name": "Joe's Diner",
< "description": "A full-service, sit-down restaurant serving breakfast, lunch and dinner off a bistro menu.",
< "tags": [
< "restaurant"
< ]
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/that_red_bird~industry-classifier/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'