Skip to main content
POST
/
api
/
redfin
/
properties
/
schools
/redfin/properties/schools
curl --request POST \
  --url https://api.anysite.io/api/redfin/properties/schools \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "property": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@redfin_school",
    "name": "<string>",
    "institution_type": "<string>",
    "grade_ranges": "<string>",
    "great_schools_rating": 123,
    "parent_rating": 123,
    "distance_in_miles": 123,
    "student_count": 123,
    "student_to_teacher_ratio": 123,
    "review_count": 123,
    "serves_home": true,
    "is_elementary": true,
    "is_middle": true,
    "is_high": true,
    "full_address": "<string>",
    "district_name": "<string>",
    "url": "<string>",
    "website_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
property
string
required

Redfin property URL or path (containing /home/{id})

Minimum string length: 1
Example:

"https://www.redfin.com/NY/Brooklyn/7017-20th-Ave-11204/home/171337321"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@redfin_school
name
string | null
institution_type
string | null
grade_ranges
string | null
great_schools_rating
integer | null
parent_rating
integer | null
distance_in_miles
number | null
student_count
integer | null
student_to_teacher_ratio
integer | null
review_count
integer | null
serves_home
boolean | null
is_elementary
boolean | null
is_middle
boolean | null
is_high
boolean | null
full_address
string | null
district_name
string | null
url
string | null
website_url
string | null