$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "googleSheetId": "1jNh9tJyyc7k6jcihQ8BGCkpZOsDmyyrql9TN45vjebI",
< "worksheetName": "Sheet1",
< "companies": [
< {
< "company_name": "Test Financial Corp Ltd",
< "symbol": "TESTFIN",
< "exchange": "NSE",
< "sector": "Financial Services",
< "revenue": "1000 Cr",
< "profit": "150 Cr",
< "market_cap": "5000 Cr",
< "pe_ratio": "15.5",
< "debt_to_equity": "0.3",
< "roe": "12.8",
< "current_ratio": "1.2",
< "dividend_yield": "2.5",
< "_mock_data": true,
< "_test_mode": true,
< "_data_completeness": 100,
< "_data_quality_score": 95,
< "_extraction_timestamp": "2025-08-05T12:00:00.000Z"
< }
< ],
< "startRow": 2,
< "endRow": 2,
< "batchSize": 1,
< "batchIndex": 0,
< "testMode": true,
< "maxConcurrency": 1,
< "waitForLoadMs": 500,
< "urlDiscoveryTimeout": 3000,
< "includeFinancialRatios": false,
< "dataSource": "auto"
<}
<EOF
$curl "https://api.apify.com/v2/acts/shashghosh~comprehensive-financial-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'