$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "prompts": [
< "Act as a senior SEO copywriter. For the product 'Patagonia Nano Puff jacket', write: (1) a 60-word benefit-driven product description, (2) an SEO meta title under 60 characters, (3) a meta description under 155 characters, and (4) 8 long-tail keywords people actually search for. Return everything as clean Markdown with headings.",
< "Search the web for the three most recent funding rounds (last 30 days) in the European AI-agent startup space. For each, return: company name, amount raised, lead investor, one-sentence description of what they do, and the source URL. Format as a Markdown table.",
< "Read the page at https://en.wikipedia.org/wiki/Transformer_(deep_learning_architecture) and extract: (1) the year the architecture was introduced, (2) the paper title and authors, (3) the three core components in plain English, (4) two real-world products that use it today, (5) one well-known limitation. Return as a JSON object with exactly those five keys."
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/fayoussef~bulk-llm-runner/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'