senioradvisor.com APIsenioradvisor.com ↗
Search and retrieve senior care facility data from SeniorAdvisor.com. Access pricing, ratings, services, reviews, and care types via 5 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/5e712659-d268-4efd-b3c4-226929bf76d4/search_facilities?page=1&care_type=assisted-living&location_slug=new-york-ny' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for senior care facilities by location (city-state slug or ZIP code) and care type. Returns a paginated list of facilities with basic info including name, address, rating, and review count.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| care_type | string | Care type slug. Accepted values: assisted-living, memory-care, nursing-home, independent-living, senior-apartment, in-home-care, residential-care-home. |
| location_slugrequired | string | Location slug (e.g., 'new-york-ny') or ZIP code (e.g., '10001'). Obtain slugs from search_location endpoint's to_url field. |
{
"type": "object",
"fields": {
"page": "integer - current page number",
"results": "array of facility summaries with name, slug, address, rating, review_count, url",
"location": "string - the location_slug that was searched",
"care_type": "string - the care type slug used"
},
"sample": {
"data": {
"page": 1,
"results": [
{
"url": "https://www.senioradvisor.com/local/atria-west-86-new-york-ny",
"name": "Atria West 86 - New York, NY",
"slug": "atria-west-86-new-york-ny",
"rating": 4.5,
"address": "333 W 86th St, New York, NY 10024",
"review_count": 148
}
],
"location": "new-york-ny",
"care_type": "assisted-living"
},
"status": "success"
}
}About the senioradvisor.com API
The SeniorAdvisor.com API provides access to senior care facility data across the US through 5 endpoints, covering facility search, detailed profiles, location autocomplete, care type listings, and state-level browsing. The get_facility_detail endpoint returns over 8 structured fields per facility including pricing by room type, services, photos, and contact information, making it practical for building care-finder tools or populating comparison databases.
Searching Facilities
The search_facilities endpoint accepts a location_slug (e.g., new-york-ny) or ZIP code and an optional care_type slug to return paginated facility summaries. Each result includes the facility's name, slug, address, rating, review_count, and url. The care_type parameter accepts values such as assisted-living, memory-care, nursing-home, independent-living, and senior-apartm. Use search_location to resolve a city name or ZIP code to a valid to_url slug before querying.
Facility Detail
Passing a facility slug from search results to get_facility_detail returns the full profile: address, phone, rating, review_count, description, photos (array of URLs), services (array of amenity/service strings), and pricing (array of objects with room_type and price). The endpoint also returns a nearby_facilities array with names and URLs, which supports geographic discovery without additional geocoding.
Location and Category Discovery
search_location functions as an autocomplete resolver — pass a partial city name or ZIP and it returns matching entries with label, id, and a to_url field ready for use in search_facilities. list_care_types returns all supported care categories with their slug and name, so you can enumerate valid care_type values without hardcoding them. search_by_state lists all US states and Canadian provinces with their facility-browsing url, name, and slug, enabling hierarchical drill-down from state to city to individual facility.
- Build a senior care comparison tool that surfaces pricing by room type and ratings from
get_facility_detail - Populate a directory of assisted-living or memory-care facilities filtered by city using
search_facilities - Generate state-level landing pages for senior care resources using slugs from
search_by_state - Aggregate review counts and average ratings across facilities in a ZIP code for market research
- Resolve user-typed city names to valid location slugs with
search_locationbefore running facility searches - Extract services and amenities arrays from
get_facility_detailto power structured facility filtering - Map nearby facility networks from the
nearby_facilitiesfield in facility detail responses
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does SeniorAdvisor.com have an official developer API?+
What does the `get_facility_detail` endpoint return for pricing?+
pricing field is an array of objects, each with a room_type and a price value. This reflects the room-level pricing displayed on individual facility pages. Prices are returned as listed on the source and are not normalized to a consistent format.Does the API return individual user reviews and review text?+
rating and review_count per facility but does not expose individual review content or reviewer details. You can fork this API on Parse and revise it to add an endpoint that fetches per-review data.How does pagination work in `search_facilities`?+
search_facilities endpoint accepts an integer page parameter. The response includes the current page number alongside the results array. There is no explicit total_pages or total_results field in the response, so you iterate pages until the results array is empty or returns fewer items than a full page.Does the API cover Canadian senior care facilities?+
search_by_state endpoint does include Canadian provinces in its results, but facility density and data completeness outside the US may be limited. You can fork this API on Parse and revise it to scope searches specifically to Canadian provinces using the province slugs returned by that endpoint.