Skip to main content
GET
/
api
/
v1
/
submission
/
{pingid}
/
cat
/
coverage-options
/
{coverage_option_uuid}
/
export
Export Coverage Option
curl --request GET \
  --url https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/export \
  --header 'Authorization: <api-key>'
{
  "uuid": "019dd58e-eb2a-7958-8070-570003e4ee29",
  "name": "Option 1",
  "created_time": "2026-04-29T02:10:34.749499Z",
  "modified_time": "2026-04-29T02:10:34.803551Z",
  "peril_terms": {
    "Earthquake": {
      "subperil_types": [
        "EQ_Shake",
        "EQ_Sprinkler",
        "EQ_Tsunami",
        "EQ_Fire",
        "EQ_Liquefaction"
      ],
      "sublimit": 1000000,
      "min_deductible": 10000,
      "max_deductible": 20000,
      "self_insured_retentions": 100000,
      "agg_limit": 500000,
      "agg_deductible": 50000,
      "bi_days_deductible": 10,
      "location_deductible_type": "S",
      "location_deductible": {
        "amount": 25000
      }
    },
    "Hurricane": {
      "subperil_types": [
        "HU_Wind",
        "HU_PrecipitationFlood"
      ],
      "location_deductible_type": "S",
      "location_deductible": {
        "percent": 4.5
      }
    },
    "Storm Surge": {
      "subperil_types": [
        "HU_Surge"
      ],
      "location_deductible_type": "S",
      "location_deductible": {
        "percent": 8.5
      }
    },
    "Severe Storm": {
      "subperil_types": [
        "Hail",
        "StraightLineWind",
        "Tornado",
        "WinterStorm"
      ]
    },
    "Flood": {
      "subperil_types": [
        "InlandFlood"
      ]
    },
    "Wildfire": {
      "subperil_types": [
        "Wildfire"
      ]
    }
  },
  "zone_terms": {
    "HU": {
      "FL": {
        "is_excluded": true
      },
      "Tier1": {
        "sublimit": 3000000,
        "is_excluded": false,
        "location_deductible_type": "S",
        "location_deductible": {
          "percent": 10
        }
      },
      "AllOther": {
        "min_deductible": 12000,
        "max_deductible": 15000,
        "is_excluded": false,
        "location_deductible_type": "S",
        "location_deductible": {
          "amount": 8000
        }
      }
    }
  },
  "excluded_subperil_types": [
    "EQ_Landslide",
    "Terrorism"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.pingintel.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Supports Token-prefixed API keys and Bearer-prefixed JWT-based authentication.

Path Parameters

coverage_option_uuid
string
required
pingid
string
required

Response

200 - application/json
uuid
string<uuid>
required

Coverage option identifier.

name
string
required

Coverage option name.

created_time
string<date-time>
required

When the coverage option was created.

modified_time
string<date-time>
required

When any of the terms in this coverage option were last modified.

peril_terms
object
required

Keyed by peril group name (an arbitrary label of grouped subperils, e.g. Earthquake, EQ2, Storm Surge, AOP). Dict values are objects representing the terms that apply to the group.

zone_terms
object
required

Keyed by peril class (EQ, HU, SCS, IF), then zone name. Dict values are objects representing the terms that apply to the zone.

excluded_subperil_types
enum<string>[] | null

List of excluded subperil types.

  • HU_Wind - HU_Wind
  • HU_Surge - HU_Surge
  • HU_PrecipitationFlood - HU_PrecipitationFlood
  • EQ_Shake - EQ_Shake
  • EQ_Fire - EQ_Fire
  • EQ_Sprinkler - EQ_Sprinkler
  • EQ_Landslide - EQ_Landslide
  • EQ_Tsunami - EQ_Tsunami
  • EQ_Liquefaction - EQ_Liquefaction
  • InlandFlood - InlandFlood
  • Wildfire - Wildfire
  • Smoke - Smoke
  • WinterStorm - WinterStorm
  • SevereConvectiveStorm - SevereConvectiveStorm
  • Hail - Hail
  • StraightLineWind - StraightLineWind
  • Tornado - Tornado
  • SevereStorm - SevereStorm
  • Terrorism - Terrorism
  • NonCat - NonCat
Available options:
HU_Wind,
HU_Surge,
HU_PrecipitationFlood,
EQ_Shake,
EQ_Fire,
EQ_Sprinkler,
EQ_Landslide,
EQ_Tsunami,
EQ_Liquefaction,
InlandFlood,
Wildfire,
Smoke,
WinterStorm,
SevereConvectiveStorm,
Hail,
StraightLineWind,
Tornado,
SevereStorm,
Terrorism,
NonCat