ASCE Hazard Tool API

The ASCE Hazard Tool API provides a simple interface to query locations in the United States for environmental hazard data by geographic location. It provides site-specific hazard values used in structural engineering design including seismic ground motion parameters, wind speeds, snow loads, ice loads, and flood data in accordance with ASCE 7 and related standards. Access requires an ASCE membership or license.

Operations 8

GET /flood Get flood information
GET /ice Get ice information
GET /rain Get rain information
GET /seismic Get seismic information
GET /snow Get snow information
GET /tornado Get tornado information
GET /tsunami Get tsunami information
GET /wind Get wind information

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/hazard-tool-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

asce-amplify-hazard-loads-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: ASCE Hazard Loads API documentation
  description: This is the API documentation for the ASCE Hazard Loads API.
  version: 1.0.0
servers:
  - url: https://api-hazard.asce.org/v1
  - url: http://localhost:3000/v1
paths:
  /flood:
    get:
      tags:
        - Flood
      summary: Get flood information
      parameters:
        - name: lat
          in: query
          description: Latitude of the location
          required: true
          explode: true
          schema:
            type: number
            default: 34.921206
        - name: lon
          in: query
          description: Longitude of the location
          required: true
          schema:
            type: number
            default: -118.418998
      responses:
        '200':
          description: Successful operation
        '400':
          description: Invalid input
  /ice:
    get:
      tags:
        - Ice
      summary: Get ice information
      parameters:
        - name: lat
          in: query
          description: Latitude of the location
          required: true
          explode: true
          schema:
            type: number
            default: 34.921206
        - name: lon
          in: query
          description: Longitude of the location
          required: true
          schema:
            type: number
            default: -118.418998
        - name: standardsVersion
          in: query
          description: Standards version
          required: true
          schema:
            type: string
            enum:
              - 7-10
              - 7-16
              - 7-22
        - name: riskLevel
          in: query
          description: Risk level
          required: false
          schema:
            type: number
            enum:
              - 1
              - 2
              - 3
              - 4
      responses:
        '200':
          description: Successful operation
        '400':
          description: Invalid input
  /rain:
    get:
      tags:
        - 'Rain'
      summary: Get rain information
      parameters:
        - name: lat
          in: query
          description: Latitude of the location
          required: true
          schema:
            type: number
            default: 34.921206
        - name: lon
          in: query
          description: Longitude of the location
          required: true
          schema:
            type: number
            default: -118.418998
      responses:
        '200':
          description: Successful operation
        '400':
          description: Invalid input
  /seismic:
    get:
      tags:
        - 'Seismic'
      summary: Get seismic information
      parameters:
        - name: lat
          in: query
          description: Latitude of the location
          required: true
          schema:
            type: number
            default: 34.921206
        - name: lon
          in: query
          description: Longitude of the location
          required: true
          schema:
            type: number
            default: -118.418998
        - name: standardsVersion
          in: query
          description: Standards version
          required: true
          schema:
            type: string
            enum:
              - 7-10
              - 7-16
              - 7-22
              - 41-17
              - 41-23
        - name: riskLevel
          in: query
          description: Risk level
          required: false
          schema:
            type: number
            enum:
              - 1
              - 2
              - 3
              - 4
        - name: siteClass
          in: query
          description: Site class
          required: true
          schema:
            type: string
            enum:
              - A
              - B
              - C
              - D
              - E
              - B-estimated
              - D-default
              - BC
              - CD
              - DE
              - Default
      responses:
        '200':
          description: Successful operation
        '400':
          description: Invalid input
  /snow:
    get:
      tags:
        - 'Snow'
      summary: Get snow information
      parameters:
        - name: lat
          in: query
          description: Latitude of the location
          required: true
          schema:
            type: number
            default: 34.921206
        - name: lon
          in: query
          description: Longitude of the location
          required: true
          schema:
            type: number
            default: -118.418998
        - name: standardsVersion
          in: query
          description: Standards version
          required: true
          schema:
            type: string
            enum:
              - 7-10
              - 7-16
              - 7-22
        - name: riskLevel
          in: query
          description: Risk level
          required: true
          schema:
            type: number
            enum:
              - 1
              - 2
              - 3
              - 4
      responses:
        '200':
          description: Successful operation
        '400':
          description: Invalid input
  /tornado:
    get:
      tags:
        - 'Tornado'
      summary: Get tornado information
      parameters:
        - name: lat
          in: query
          description: Latitude of the location
          required: true
          schema:
            type: number
            default: 34.921206
        - name: lon
          in: query
          description: Longitude of the location
          required: true
          schema:
            type: number
            default: -118.418998
        - name: standardsVersion
          in: query
          description: Standards version
          required: true
          schema:
            type: string
            enum:
              - '7-22'
        - name: riskLevel
          in: query
          description: Risk level
          required: true
          schema:
            type: number
            enum:
              - 1
              - 2
              - 3
              - 4
      responses:
        '200':
          description: Successful operation
        '400':
          description: Invalid input
  /tsunami:
    get:
      tags:
        - 'Tsunami'
      summary: Get tsunami information
      parameters:
        - name: lat
          in: query
          description: Latitude of the location
          required: true
          schema:
            type: number
            default: 34.921206
        - name: lon
          in: query
          description: Longitude of the location
          required: true
          schema:
            type: number
            default: -118.418998
        - name: standardsVersion
          in: query
          description: Standards version
          required: true
          schema:
            type: string
            enum:
              - 7-10
              - 7-16
              - 7-22
      responses:
        '200':
          description: Successful operation
        '400':
          description: Invalid input
  /wind:
    get:
      tags:
        - 'Wind'
      summary: Get wind information
      parameters:
        - name: lat
          in: query
          description: Latitude of the location
          required: true
          schema:
            type: number
            default: 34.921206
        - name: lon
          in: query
          description: Longitude of the location
          required: true
          schema:
            type: number
            default: -118.418998
        - name: standardsVersion
          in: query
          description: Standards version
          required: true
          schema:
            type: string
            enum:
              - 7-10
              - 7-16
              - 7-22
        - name: riskLevel
          in: query
          description: Risk level
          required: true
          schema:
            type: number
            enum:
              - 1
              - 2
              - 3
              - 4
      responses:
        '200':
          description: Successful operation
        '400':
          description: Invalid input
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: token
      in: query
security:
  - ApiKeyAuth: []