Authenticating Session...

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.

Account Domain
Loading...
Corporate Domain Verified
Subscription Tier
Enterprise Marine Insurance
API Data Access
API Health Check
-- ms
Probing Systems...
Data Status: checking...

API Credentials

Generate or re-issue your automated API key to authenticate requests.

Header Authentication

Pass your API key in all HTTP requests using the header: x-api-key: <YOUR_KEY>

Security & Rotation

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.

Note: The snippets below execute a two-step workflow: first requesting the API Gateway endpoint to generate the secure download URL, then saving the payload directly as 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"