Marine Insurance Risk API
Ingest real-time risk scores and primary attribution factors directly into your underwriting models. Output includes calculated risk scores and the top 3 contributing factors for each grid cell.
API Credentials
Generate or re-issue your automated API key to authenticate requests.
Pass your API key in all HTTP requests using the header:
x-api-key: <YOUR_KEY>
Keys are delivered directly to your corporate inbox. Re-requesting a key automatically invalidates the previous key.
Manual Data Download
Paste your active API key and specify a target date to instantly download the risk forecast directly to your machine.
Quickstart Integration
The API returns a secure, time-limited S3 pre-signed link (download_url). Select your language below to request and save the dataset locally.
inference_marine_insurance.geojson.
$Headers = @{
"x-api-key" = "YOUR_API_KEY_HERE"
"Content-Type" = "application/json"
}
# 1. Fetch pre-signed download URL from API Gateway
$res = Invoke-RestMethod -Method GET -Uri "https://api.androai.us/risk-forecast?target_date=2026-08-25" -Headers $Headers
# 2. Download and save the GeoJSON dataset locally
Invoke-WebRequest -Uri $res.download_url -OutFile "inference_marine_insurance.geojson"
# 1. Fetch pre-signed URL from API Gateway
DOWNLOAD_URL=$(curl -s -H "x-api-key: YOUR_API_KEY_HERE" "https://api.androai.us/risk-forecast?target_date=2026-08-25" | jq -r .download_url)
# 2. Download and save the GeoJSON dataset locally
curl -o "inference_marine_insurance.geojson" "$DOWNLOAD_URL"
import requests
headers = {
"x-api-key": "YOUR_API_KEY_HERE",
"Content-Type": "application/json"
}
# 1. Request pre-signed S3 download URL
res = requests.get("https://api.androai.us/risk-forecast?target_date=2026-08-25", headers=headers).json()
download_url = res.get("download_url")
# 2. Download and save GeoJSON file locally
file_res = requests.get(download_url)
with open("inference_marine_insurance.geojson", "wb") as f:
f.write(file_res.content)
print("Saved inference_marine_insurance.geojson successfully!")