$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "claim": {
< "id": "claim-1",
< "text": "The restriction is currently in force.",
< "required_evidence_classes": [
< "official_record",
< "independent_report"
< ]
< },
< "evidence": [
< {
< "id": "official",
< "evidence_class": "official_record",
< "source": {
< "id": "authority",
< "url": "https://example.org/official-record",
< "source_type": "official_record",
< "publisher": "Example Authority"
< },
< "evidence_kind": "TRANSMITTED",
< "observed_at": "2026-09-06T10:00:00Z",
< "max_age_seconds": 86400,
< "claim_id": "claim-1",
< "relation": "SUPPORTS"
< },
< {
< "id": "independent",
< "evidence_class": "independent_report",
< "source": {
< "id": "observer",
< "url": "https://example.org/independent-report"
< },
< "evidence_kind": "TRANSMITTED",
< "observed_at": "2026-09-06T09:30:00Z",
< "max_age_seconds": 86400,
< "claim_id": "claim-1",
< "relation": "SUPPORTS"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/suezcanal.xyz~research-verification/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'