$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "start": 1,
< "limit": 100,
< "sort_by": "trending_24h",
< "sort_type": "desc",
< "convert": [
< "USD",
< "BTC",
< "ETH"
< ],
< "audited": false,
< "aux": [
< "ath",
< "atl",
< "high24h",
< "low24h",
< "num_market_pairs",
< "cmc_rank",
< "date_added",
< "max_supply",
< "circulating_supply",
< "total_supply",
< "volume_7d",
< "volume_30d",
< "self_reported_circulating_supply",
< "self_reported_market_cap"
< ]
<}
<EOF
$curl "https://api.apify.com/v2/acts/maged120~crypto/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'