Moody's RMS Earthquake Hazard Lookup API

The Earthquake Hazard Lookup API from Moody's RMS — 40 operation(s) for earthquake hazard lookup.

Operations 40

POST /ac_eq_hazard/18.0 Central America Earthquake Hazard 18.0
POST /ac_eq_hazard/18.1 Central America Earthquake Hazard 18.1
POST /ac_eq_hazard/latest Central America Earthquake Hazard Latest
POST /ah_eq_hazard/18.0 South American Earthquake Hazard 18.0
POST /ah_eq_hazard/18.1 South American Earthquake Hazard 18.1
POST /ah_eq_hazard/latest South American Earthquake Hazard Latest
POST /ap_eq_hazard/18.0 Southeast Asia Earthquake Hazard 18.0
POST /ap_eq_hazard/18.1 Southeast Asia Earthquake Hazard 18.1
POST /ap_eq_hazard/latest Southeast Asia Earthquake Hazard Lastest
POST /au_eq_hazard/18.0 Australia Earthquake Hazard 18.0
POST /au_eq_hazard/18.1 Australia Earthquake Hazard 18.1
POST /au_eq_hazard/latest Australia Earthquake Hazard Latest
POST /cb_eq_hazard/18.0 Caribbean Earthquake Hazard 18.0
POST /cb_eq_hazard/18.1 Caribbean Earthquake Hazard 18.1
POST /cb_eq_hazard/latest Caribbean Earthquake Hazard Latest
POST /cc_eq_hazard/18.0 China Earthquake Hazard 18.0
POST /cc_eq_hazard/18.1 China Earthquake Hazard 18.1
POST /cc_eq_hazard/latest China Earthquake Hazard Latest
POST /eu_eq_hazard/18.0 European Earthquake Hazard 18.0
POST /eu_eq_hazard/18.1 European Earthquake Hazard 18.1
POST /eu_eq_hazard/latest European Earthquake Hazard Latest
POST /gu_eq_hazard/18.0 Guam Earthquake Hazard 18.0
POST /gu_eq_hazard/18.1 Guam Earthquake Hazard 18.1
POST /gu_eq_hazard/latest Guam Earthquake Hazard Latest
POST /il_eq_hazard/18.0 Israel Earthquake Hazard 18.0
POST /il_eq_hazard/18.1 Israel Earthquake Hazard 18.1
POST /il_eq_hazard/latest Israel Earthquake Hazard Latest
POST /in_eq_hazard/18.0 India Earthquake Hazard 18.0
POST /in_eq_hazard/18.1 India Earthquake Hazard 18.1
POST /in_eq_hazard/latest India Earthquake Hazard Latest
POST /jp_eq_hazard/2.0 Japan Earthquake Hazard 2.0
POST /jp_eq_hazard/latest Japan Earthquake Hazard Latest
POST /kr_eq_hazard/18.0 Korea Earthquake Hazard 18.0
POST /kr_eq_hazard/18.1 Korea Earthquake Hazard 18.1
POST /kr_eq_hazard/latest Korea Earthquake Hazard Latest
POST /na_eq_hazard/18.0 North America Earthquake Hazard 18.0
POST /na_eq_hazard/18.1 North America Earthquake Hazard 18.1
POST /na_eq_hazard/latest North America Earthquake Hazard Latest
POST /nz_eq_hazard/2.0 New Zealand Earthquake Hazard 2.0
POST /nz_eq_hazard/latest New Zealand Earthquake Hazard Latest

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/moodys-rms-earthquake-hazard-lookup-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

moodys-rms-earthquake-hazard-lookup-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Location Intelligence Earthquake Hazard Lookup API
  version: 2022.09.c
  description: Use LI API data to access RMS model insights in a flexible, scalable, and programmable way. The suite of layers includes exposure enhancement, geocoding, hazard, risk scoring, and loss costs to provide information for key decisions in the underwriting workflow, including screening, selection, and pricing.
servers:
- url: https://{host}/li
  description: Location Intelligence
  variables:
    host:
      enum:
      - api-euw1.rms.com
      - api-use1.rms.com
      default: api-euw1.rms.com
      description: 'Data center that hosts the tenant instance: api-euw1.rms.com or api-use1.rms.com.'
security:
- apiKey: []
tags:
- name: Earthquake Hazard Lookup
paths:
  /ac_eq_hazard/18.0:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Central America Earthquake Hazard 18.0
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/SvAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /ac_eq_hazard/18.1:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Central America Earthquake Hazard 18.1
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/SvAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /ac_eq_hazard/latest:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Central America Earthquake Hazard Latest
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/SvAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /ah_eq_hazard/18.0:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: South American Earthquake Hazard 18.0
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/BrAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /ah_eq_hazard/18.1:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: South American Earthquake Hazard 18.1
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/BrAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /ah_eq_hazard/latest:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: South American Earthquake Hazard Latest
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/BrAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /ap_eq_hazard/18.0:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Southeast Asia Earthquake Hazard 18.0
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/VnAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /ap_eq_hazard/18.1:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Southeast Asia Earthquake Hazard 18.1
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/VnAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /ap_eq_hazard/latest:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Southeast Asia Earthquake Hazard Lastest
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/VnAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /au_eq_hazard/18.0:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Australia Earthquake Hazard 18.0
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/AuAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /au_eq_hazard/18.1:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Australia Earthquake Hazard 18.1
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/AuAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /au_eq_hazard/latest:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Australia Earthquake Hazard Latest
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/AuAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /cb_eq_hazard/18.0:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Caribbean Earthquake Hazard 18.0
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/DrAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /cb_eq_hazard/18.1:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Caribbean Earthquake Hazard 18.1
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/DrAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /cb_eq_hazard/latest:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Caribbean Earthquake Hazard Latest
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/DrAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /cc_eq_hazard/18.0:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: China Earthquake Hazard 18.0
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/CnAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /cc_eq_hazard/18.1:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: China Earthquake Hazard 18.1
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/CnAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /cc_eq_hazard/latest:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: China Earthquake Hazard Latest
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/CnAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /eu_eq_hazard/18.0:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: European Earthquake Hazard 18.0
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/EuGbAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /eu_eq_hazard/18.1:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: European Earthquake Hazard 18.1
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/EuGbAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /eu_eq_hazard/latest:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: European Earthquake Hazard Latest
      description: ''
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/EuGbAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /gu_eq_hazard/18.0:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Guam Earthquake Hazard 18.0
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/GuAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /gu_eq_hazard/18.1:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Guam Earthquake Hazard 18.1
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                  - type: object
                  properties:
                    address:
                      type: object
                      required:
                      - latitude
                      - longitude
                      - countryRmsCode
                      - rmsGeoModelResolutionCode
                      example:
                        $ref: '#/components/examples/GuAddress/value'
        required: true
      responses:
        '200':
          description: Everything worked as expected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarthquakeHazardOutput'
        '400':
          $ref: '#/components/responses/400Response'
        '401':
          $ref: '#/components/responses/401Response'
        '500':
          $ref: '#/components/responses/500Response'
  /gu_eq_hazard/latest:
    post:
      tags:
      - Earthquake Hazard Lookup
      summary: Guam Earthquake Hazard Latest
      requestBody:
        description: Request
        content:
          application/json:
            schema:
              type: object
              required:
              - location
              properties:
                location:
                  type: object
                  allOf:
                  - $ref: '#/components/schemas/AddressInput'
                 

# --- truncated at 32 KB (73 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/moodys-rms/refs/heads/main/openapi/moodys-rms-earthquake-hazard-lookup-api-openapi.yml