> ## Documentation Index
> Fetch the complete documentation index at: https://docs.propertydata.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Property Environmental Risk

> Get Property Environmental Risk



## OpenAPI

````yaml api-reference/realtor/openapi.json get /api/v1/property/environmental-risk
openapi: 3.1.0
info:
  title: US Red Property Data
  description: US Red Property Data Documentation
  version: 1.0.0
servers:
  - url: https://us-red-property-data.p.rapidapi.com
    description: RapiAPI
security: []
paths:
  /api/v1/property/environmental-risk:
    get:
      tags:
        - Property
      summary: Get Property Environmental Risk
      description: Get Property Environmental Risk
      operationId: getApiV1PropertyEnvironmental-risk
      parameters:
        - in: query
          name: property_id
          schema:
            type: string
            pattern: ^\d+$
            minLength: 1
            description: Property ID used to identify the property
            example: '2503567184'
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  cost:
                    type: number
                    description: Cost of the request
                    example: 1
                  data:
                    type: object
                    properties:
                      flood:
                        type: object
                        properties:
                          flood_factor_severity:
                            type: string
                            description: ''
                            example: minimal
                          flood_trend:
                            type: string
                            description: ''
                            example: This property’s flood risk is not changing.
                      wildfire:
                        type: object
                        properties:
                          fire_factor_severity:
                            type: string
                            description: ''
                            example: minimal
                          fire_trend:
                            type: string
                            description: ''
                            example: This property’s wildfire risk is not changing.
                      heat:
                        type: object
                        properties:
                          heat_factor_severity:
                            type: string
                            description: ''
                            example: Major
                          heat_trend:
                            type: string
                            description: ''
                            example: 6 days above 86°F this year
                      wind:
                        type: object
                        properties:
                          wind_factor_severity:
                            type: string
                            description: ''
                            example: Minimal
                          wind_trend:
                            type: string
                            description: ''
                            example: Minimal risk of severe winds over next 30 years
                      air:
                        type: object
                        properties:
                          air_factor_severity:
                            type: string
                            description: ''
                            example: Moderate
                          air_trend:
                            type: string
                            description: ''
                            example: Risk of poor air quality is increasing
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      Invalid API key. Go to https://docs.rapidapi.com/docs/keys
                      for more info.
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: You are not subscribed to this API.
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: 'Request failed with status 500: Internal Server Error'
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: >-
                      Oops, it looks like there was an issue processing your
                      request. Don't worry, you won't be charged for this
                      request
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: Rapid API Key

````