$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "outputMode": "address_evidence",
< "addresses": [
< "1100 Briercliff Drive, Orlando, FL"
< ],
< "marketSources": [
< {
< "source_id": "customer-pms-export",
< "publisher": "Customer-authorized property management system",
< "source_url": "https://example.com/customer-export",
< "access_method": "customer_authorized",
< "observed_at": "2026-08-25T12:00:00.000Z",
< "rights": {
< "commercial_use": "allowed",
< "redistribution": "allowed",
< "basis": "Customer authorized CivicDataForge to process and return this portfolio data.",
< "evidence_url": "https://example.com/authorization",
< "reviewed_at": "2026-08-25T12:00:00.000Z",
< "asserted_by": "customer"
< },
< "observations": [
< {
< "reference_id": "property-1",
< "platform": "customer-pms",
< "listing_id": "listing-1",
< "claimed_permit_id": "STR-EXAMPLE",
< "address": "1100 Briercliff Drive, Orlando, FL",
< "address_precision": "exact",
< "observed_at": "2026-08-25T12:00:00.000Z"
< }
< ]
< }
< ],
< "cities": [
< "orlando"
< ],
< "status": "all",
< "maxRecordsPerCity": 25
<}
<EOF
$curl "https://api.apify.com/v2/actors/civicdataforge~str-permit-registry/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'