Automate F.S. 380.093 compliance with our professional API
API access requires a paid subscription. View pricing → | Contact: info@clearviewgeographic.com
Base URL: https://380va.cvg-nexus.com/api or https://380va.cleargeo.tech/api
Format: JSON
Authentication: API Key in header X-API-Key: your_key_here
Rate Limits: 25 req/hr (Free) | 5,000 req/hr (Pro $299/mo) | Unlimited (Enterprise $999+/mo)
List all vulnerability assessment resources with filtering
Parameters: action=list, category, file_type, limit, offset, sort
GET https://380va.cvg-nexus.com/api/resources?action=list&category=legal&limit=10
Get specific resource details
Parameters: action=get, id={resource_id}
Full-text search across all resources
Parameters: action=search, q={query}, category
Platform statistics and usage metrics
Returns: Total resources, downloads, views, category breakdown
Create new vulnerability assessment project
Body: {jurisdiction, type, scope, timeline}
Returns: {assessment_id, status, created_date}
Retrieve assessment details and progress
Returns: Full assessment data, completion %, DEP checklist status
Update assessment progress
Body: {phase, completion_percentage, notes}
Submit completed assessment to DEP
Body: {certification, final_report_url, gis_data_url}
Returns: {submission_id, dep_confirmation}
List all assessments for authenticated account
Params: status, jurisdiction, date_range
Import critical asset inventory (CSV, Excel, GeoJSON)
Body: File upload + jurisdiction + asset_category
Returns: Import validation, asset count, categorization
Retrieve critical assets by jurisdiction
Params: category, vulnerability_level, impact_timeline
Update vulnerability assessment for specific asset
Body: {hazard_type, vulnerability_score, adaptive_capacity}
Calculate sea level rise impact for coordinates
Body: {lat, lon, scenario, planning_horizon}
Returns: Elevation change, inundation area, affected assets
Retrieve NOAA 2022 SLR scenarios
Params: location, gauge_id, time_horizon
Run 4-component flood analysis
Body: {boundary_geojson, components: [tidal, surge, rainfall, compound]}
Historical flood event data
Params: location, date_range, event_type
Check Resilient Florida Grant eligibility
Body: {jurisdiction, population, per_capita_income}
Returns: {eligible, tier, cost_share_percentage}
Calculate 4-tier ranking score
Body: Project details including risk reduction, readiness, costs
Returns: {tier1_score, tier2_score, tier3_score, tier4_score, total_rank}
Grant submission deadlines
Returns: September 1 deadline, December 1 statewide plan, requirements
Validate assessment against F.S. 380.093
Body: Assessment data + jurisdiction
Returns: {compliant, missing_items, dep_checklist_status}
DEP compliance checklist (Items A-N)
Params: assessment_year
Validate GIS data meets DEP standards
Body: File upload + coordinate_system + metadata
API usage statistics for your account
Returns: {requests_used, limit, reset_time, subscription_tier}
Configure webhooks for events
Body: {webhook_url, events: [assessment_complete, deadline_reminder]}
import requests
# Set your API key
headers = {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
# Check grant eligibility
response = requests.post(
'https://380va.cvg-nexus.com/api/grants/eligibility',
headers=headers,
json={
'jurisdiction': 'City of DeLand',
'population': 35124,
'per_capita_income': 28500
}
)
result = response.json()
print(f"Eligible: {result['eligible']}")
print(f"Cost Share: {result['cost_share_percentage']}")
const apiKey = 'your_api_key_here';
// List all legal resources
fetch('https://380va.cvg-nexus.com/api/resources?action=list&category=legal', {
headers: {
'X-API-Key': apiKey,
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => {
data.data.forEach(resource => {
console.log(resource.title, resource.file_path);
});
});
Our team can assist with API integration, custom endpoint development, and F.S. 380.093 compliance automation. Live chat with experts →