{
  "openapi": "3.0.1",
  "info": {
    "title": "NOAA Storm Events Scraper - Damage, Hail & Tornado API",
    "description": "Search official NOAA/NCEI Storm Events history for insurance, catastrophe risk, restoration, roofing, and research. Filter hail, tornadoes, wind, floods, wildfire, damage, injuries, deaths, dates, states, counties, magnitude, locations, and narratives.",
    "version": "0.1",
    "x-build-id": "RRY4rhsOwOZIRwcVk"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/pink_comic~noaa-storm-events-damage-hail-tornado/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-pink_comic-noaa-storm-events-damage-hail-tornado",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/pink_comic~noaa-storm-events-damage-hail-tornado/runs": {
      "post": {
        "operationId": "runs-sync-pink_comic-noaa-storm-events-damage-hail-tornado",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/pink_comic~noaa-storm-events-damage-hail-tornado/run-sync": {
      "post": {
        "operationId": "run-sync-pink_comic-noaa-storm-events-damage-hail-tornado",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "eventId": {
            "title": "Exact NOAA Event ID",
            "pattern": "^[0-9]*$",
            "type": "string",
            "description": "Exact numeric Storm Events event ID. Keep the date range around the event year."
          },
          "startDate": {
            "title": "Start Date",
            "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
            "type": "string",
            "description": "Inclusive event start date in YYYY-MM-DD format. A run may span at most 10 calendar years.",
            "default": "2026-01-01"
          },
          "endDate": {
            "title": "End Date",
            "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
            "type": "string",
            "description": "Inclusive event end date in YYYY-MM-DD format.",
            "default": "2026-12-31"
          },
          "states": {
            "title": "States or Territories",
            "type": "array",
            "description": "State names or two-letter abbreviations. Empty means all states and NOAA marine areas.",
            "items": {
              "type": "string"
            },
            "default": [
              "TX"
            ]
          },
          "counties": {
            "title": "County or Forecast Zone Names",
            "type": "array",
            "description": "Exact NOAA county, parish, marine-zone, or forecast-zone names, such as HOUSTON or MONTGOMERY.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "eventTypes": {
            "title": "Event Types",
            "type": "array",
            "description": "Exact NOAA event types, such as Hail, Tornado, Thunderstorm Wind, Flash Flood, Wildfire, or Hurricane (Typhoon). Empty means all types.",
            "items": {
              "type": "string"
            },
            "default": [
              "Hail"
            ]
          },
          "keyword": {
            "title": "Narrative, Location, Source, or Type Keyword",
            "type": "string",
            "description": "Case-insensitive substring matched across episode/event narratives, begin/end locations, report source, county/zone, and event type."
          },
          "minPropertyDamage": {
            "title": "Minimum Property Damage Estimate (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Minimum broad nominal-dollar property-damage estimate reported by NWS. These are not insurance claim totals.",
            "default": 0
          },
          "minCropDamage": {
            "title": "Minimum Crop Damage Estimate (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Minimum broad nominal-dollar crop-damage estimate reported by NWS.",
            "default": 0
          },
          "minTotalDamage": {
            "title": "Minimum Combined Damage Estimate (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Minimum property plus crop damage estimate.",
            "default": 0
          },
          "minInjuries": {
            "title": "Minimum Injuries",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum direct plus indirect injuries.",
            "default": 0
          },
          "minDeaths": {
            "title": "Minimum Deaths",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum direct plus indirect deaths.",
            "default": 0
          },
          "minMagnitude": {
            "title": "Minimum Magnitude",
            "minimum": 0,
            "type": "number",
            "description": "Minimum source magnitude. Meaning depends on event type: hail uses inches; wind generally uses knots.",
            "default": 0
          },
          "sortBy": {
            "title": "Sort Results",
            "enum": [
              "latest",
              "oldest",
              "propertyDamage",
              "cropDamage",
              "totalDamage",
              "deaths",
              "injuries",
              "magnitude"
            ],
            "type": "string",
            "description": "Order matched events after every filter is applied.",
            "default": "latest"
          },
          "maxResults": {
            "title": "Maximum Results",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Total response cap after all files, filters, and sorting.",
            "default": 25
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}