$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "startUrls": [
< {
< "url": "https://www.example.com"
< },
< {
< "url": "https://www.example.com/some-path"
< }
< ],
< "outputSchema": {
< "business_name": "The name of the business",
< "business_owner_name": "The owner or founder's name (look for titles like owner, founder, director, president)",
< "business_address": "The full business address as it appears on the website",
< "business_size": "Business size: 'small' (under 50 employees), 'medium' (50-250), or 'large' (250+)",
< "contact_email": "Primary contact email address for the business",
< "phone_number": "Primary business phone number",
< "business_summary": "One sentence describing what the business does or offers"
< }
<}
<EOF
$curl "https://api.apify.com/v2/acts/ashar_malik~bizsleuth/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'