$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "companyProfile": {
< "name": "Northstar Cloud",
< "capabilities": [
< "cloud infrastructure",
< "managed services",
< "migration"
< ],
< "sectors": [
< "technology",
< "public sector"
< ],
< "regions": [
< "Europe"
< ],
< "certifications": [
< "ISO 27001"
< ],
< "keywords": [
< "Kubernetes",
< "AWS"
< ]
< },
< "opportunities": [
< {
< "id": "RFP-2026-104",
< "title": "Cloud infrastructure migration and managed services",
< "buyer": "Example Public Agency",
< "description": "Migrate workloads and operate Kubernetes infrastructure across Europe.",
< "deadline": "2026-09-15",
< "location": "Europe",
< "estimatedValue": 250000,
< "currency": "EUR",
< "requiredCertifications": [
< "ISO 27001"
< ]
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/egeusta~tender-rfp-opportunity-matcher/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'