$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "valuationInput": {
< "company": "Example Technology Inc.",
< "period": "Last 12 months - end of June 2026",
< "currency": "USD",
< "stage": "seed",
< "sector": "saas",
< "anchorValuation": 25000000,
< "financials": {
< "netSales": 4800000,
< "grossProfit": 3600000,
< "ebitda": -900000,
< "netProfit": -1250000,
< "cash": 2500000,
< "financialDebt": 600000,
< "equity": 1900000
< },
< "growth": {
< "priorYearNetSales": 2100000,
< "annualRevenueGrowth": null
< },
< "multiples": {
< "revenueMultiple": null,
< "ebitdaMultiple": null
< },
< "berkus": {
< "idea": 80,
< "prototype": 85,
< "team": 70,
< "strategicRelationships": 55,
< "firstSales": 75
< },
< "scorecard": {
< "team": 1.2,
< "marketSize": 1.15,
< "product": 1.1,
< "competition": 0.9,
< "salesChannel": 0.95,
< "additionalInvestment": 0.9,
< "other": 1
< },
< "riskFactors": {
< "management": 1,
< "stageRisk": 0,
< "regulation": 0,
< "manufacturing": 1,
< "sales": -1,
< "funding": -1,
< "competitionRisk": 0,
< "technology": 1,
< "litigation": 0,
< "international": -1,
< "reputation": 0,
< "exit": 1
< },
< "vc": {
< "exitYear": 5,
< "exitRevenue": 120000000,
< "exitMultiple": 4,
< "targetReturnMultiple": 12,
< "dilution": 30
< },
< "dcf": {
< "discountRate": null,
< "terminalGrowth": null,
< "taxRate": null,
< "freeCashFlow": [
< null,
< null,
< null,
< null,
< null
< ],
< "revenueGrowth": 60,
< "targetEbitdaMargin": 22
< },
< "round": {
< "roundSize": 6000000
< }
< }
<}
<EOF
$curl "https://api.apify.com/v2/actors/bloom-consulting~startup-valuation/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'