{
  "openapi": "3.0.1",
  "info": {
    "title": "Care.com Scraper - Caregivers, Care Jobs & Provider Leads",
    "description": "Scrape Care.com caregivers and care businesses: childcare, senior care, pet care, housekeeping and tutoring. Get rates, experience, certifications, reviews, availability and business leads with addresses. Filter by city, care type and rating. Monitor mode. Export to CSV/JSON.",
    "version": "1.0",
    "x-build-id": "N5gN7OylECwH8C6Rl"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapesage~care-com-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapesage-care-com-scraper",
        "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/scrapesage~care-com-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapesage-care-com-scraper",
        "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/scrapesage~care-com-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapesage-care-com-scraper",
        "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": {
          "careTypes": {
            "title": "Care types",
            "type": "array",
            "description": "Care categories to scrape (combined with every location). Friendly names work: <code>child-care</code>, <code>babysitters</code>, <code>senior-care</code> (elder/home care), <code>pet-care</code> (pet sitting & dog walking), <code>housekeeping</code> (house cleaning), <code>special-needs</code>, <code>tutors</code> (tutoring).",
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Locations (City, State)",
            "type": "array",
            "description": "US locations as <code>City, ST</code> (e.g. <code>Austin, TX</code>, <code>Los Angeles, CA</code>, <code>Miami, FL</code>). Full state names also work (<code>Austin, Texas</code>). Each location is combined with every care type.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Direct Care.com URLs — listing pages (<code>https://www.care.com/&lt;care-type&gt;/&lt;city-st&gt;</code>) or caregiver profiles (<code>https://www.care.com/p/&lt;handle&gt;/&lt;svc&gt;</code>). Used in addition to the search above.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxResults": {
            "title": "Max results",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of caregivers/businesses to scrape across all care types, locations and URLs.",
            "default": 100
          },
          "includeCaregivers": {
            "title": "Include caregivers",
            "type": "boolean",
            "description": "Output individual caregiver records (rates, experience, certifications, services, reviews). Turn off to collect only care-business provider leads.",
            "default": true
          },
          "includeProviders": {
            "title": "Include care businesses (provider leads)",
            "type": "boolean",
            "description": "Output care-business / facility records (daycare centers, assisted living, home-care agencies) with name, full street address, geo and description — ready-to-use B2B leads. Available mainly for child-care and senior-care.",
            "default": true
          },
          "minRating": {
            "title": "Minimum rating",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Only include caregivers with an average review rating at or above this value (1–5). Use 0 for any rating.",
            "default": 0
          },
          "minYearsExperience": {
            "title": "Minimum years of experience",
            "minimum": 0,
            "type": "integer",
            "description": "Only include caregivers with at least this many years of experience. Leave empty for no filter."
          },
          "maxHourlyRate": {
            "title": "Max hourly rate ($)",
            "minimum": 0,
            "type": "integer",
            "description": "Only include caregivers whose starting hourly rate is at or below this value. Leave empty for no filter."
          },
          "backgroundCheckedOnly": {
            "title": "Background-checked caregivers only",
            "type": "boolean",
            "description": "Only include caregivers who have completed a Care.com background check (CareCheck).",
            "default": false
          },
          "includeCaregiverDetails": {
            "title": "Include caregiver details",
            "type": "boolean",
            "description": "Fetch each caregiver's full profile for the complete bio, weekly availability, languages, education, badges, background-check dates, age groups served, job interests and per-dimension review ratings. One extra request per caregiver.",
            "default": false
          },
          "includeReviews": {
            "title": "Include reviews",
            "type": "boolean",
            "description": "Attach a caregiver's reviews (rating, text, date, care type) as a nested <code>reviews</code> array inside each record — no separate rows. Requires caregiver details.",
            "default": false
          },
          "enrichProviderContacts": {
            "title": "Enrich care-business contacts from their website",
            "type": "boolean",
            "description": "For care-business / provider records that list a website in their description, crawl it (home + contact/about) for emails, phone and social links. Best-effort — many businesses do not publish a website on Care.com.",
            "default": false
          },
          "monitorMode": {
            "title": "Monitor mode (only new & changed records)",
            "type": "boolean",
            "description": "Remember caregivers/businesses seen on previous runs and only output ones that are NEW or whose rate / rating / review count CHANGED. Pair with Apify Schedules for a hands-off new-caregiver & rate-change feed.",
            "default": false
          },
          "monitorStoreName": {
            "title": "Monitor store name",
            "type": "string",
            "description": "Named key-value store that holds the 'seen' fingerprints for monitor mode. Use a different name per saved search to track them independently. Lowercase letters, digits and hyphens only.",
            "default": "care-com-monitor"
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxies to use. Residential proxies are recommended — Care.com blocks most datacenter IPs.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}