> ## 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 Neighborhood And Schools

> Get Property Neighborhood And Schools



## OpenAPI

````yaml api-reference/realtor/openapi.json get /api/v1/property/neighborhood-and-schools
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/neighborhood-and-schools:
    get:
      tags:
        - Property
      summary: Get Property Neighborhood And Schools
      description: Get Property Neighborhood And Schools
      operationId: getApiV1PropertyNeighborhood-and-schools
      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:
                      location:
                        type: object
                        properties:
                          neighborhoods:
                            type: array
                            items:
                              type: object
                              properties:
                                city:
                                  type: string
                                  description: ''
                                  example: Los Angeles
                                id:
                                  type: string
                                  description: ''
                                  example: c1d0952a-36b9-58c0-8beb-e281be7e6cf4
                                level:
                                  type: string
                                  description: ''
                                  example: neighborhood
                                name:
                                  type: string
                                  description: ''
                                  example: Crenshaw
                                geo_type:
                                  type: string
                                  description: ''
                                  example: neighborhood
                                state_code:
                                  type: string
                                  description: ''
                                  example: CA
                                slug_id:
                                  type: string
                                  description: ''
                                  example: Crenshaw_Los-Angeles_CA
                                geo_statistics:
                                  type: object
                                  description: ''
                                  example: {}
                                boundary:
                                  type: object
                                  properties:
                                    type:
                                      type: string
                                      description: ''
                                      example: Polygon
                                    coordinates:
                                      type: array
                                      items: {}
                                      description: ''
                                      example:
                                        - - - -118.33976
                                            - 34.00562
                                          - - -118.34161
                                            - 34.00461
                                          - - -118.34269
                                            - 34.00447
                                centroid:
                                  type: object
                                  properties:
                                    lat:
                                      type: number
                                      description: ''
                                      example: 34.013522
                                    lon:
                                      type: number
                                      description: ''
                                      example: -118.346819
                      schools:
                        type: object
                        properties:
                          total:
                            type: number
                            description: ''
                            example: 12
                          schools:
                            type: array
                            items:
                              type: object
                              properties:
                                id:
                                  type: string
                                  description: ''
                                  example: '078602041'
                                name:
                                  type: string
                                  description: ''
                                  example: Hillcrest Drive Elementary School
                                slug_id:
                                  type: string
                                  description: ''
                                  example: Hillcrest-Drive-Elementary-School-078602041
                                slug:
                                  type: string
                                  description: ''
                                  example: Hillcrest-Drive-Elementary-School-078602041
                                education_levels:
                                  type: array
                                  items:
                                    type: string
                                  description: ''
                                  example:
                                    - elementary
                                distance_in_miles:
                                  type: number
                                  description: ''
                                  example: 0.6
                                student_teacher_ratio:
                                  type: number
                                  description: ''
                                  example: 16.2
                                rating:
                                  type: number
                                  description: ''
                                  example: 4
                                grades:
                                  type: array
                                  items:
                                    type: string
                                  description: ''
                                  example:
                                    - K
                                    - '1'
                                    - '2'
                                    - '3'
                                    - '4'
                                    - '5'
                                funding_type:
                                  type: string
                                  description: ''
                                  example: public
                                student_count:
                                  type: number
                                  description: ''
                                  example: 549
                                review_count:
                                  type: number
                                  description: ''
                                  example: 8
                                parent_rating:
                                  type: number
                                  description: ''
                                  example: 3
                                assigned:
                                  type: boolean
                                  description: ''
                                  example: true
                    required:
                      - schools
        '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

````