{
  "openapi": "3.0.1",
  "info": {
    "title": "Florida Child Care — DCF Official Data + Quality Signals",
    "description": "Official Florida DCF child care registry (~11,800 providers, refreshed daily) — not scraped from Google Maps or Yelp. 18 filters incl. Gold Seal, VPK, Head Start & infant care, plus quality tier, license health & accreditation signals. Optional county market intelligence report.",
    "version": "0.0",
    "x-build-id": "gWGCswkOGcJfQTPrQ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/indramars2312~earlyeducation-actor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-indramars2312-earlyeducation-actor",
        "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/indramars2312~earlyeducation-actor/runs": {
      "post": {
        "operationId": "runs-sync-indramars2312-earlyeducation-actor",
        "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/indramars2312~earlyeducation-actor/run-sync": {
      "post": {
        "operationId": "run-sync-indramars2312-earlyeducation-actor",
        "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": {
          "county": {
            "title": "County",
            "type": "string",
            "description": "Filter by county name (e.g. Miami-Dade, Broward). Single string or comma-separated list."
          },
          "city": {
            "title": "City",
            "type": "string",
            "description": "Filter by city name (partial match, case-insensitive)."
          },
          "zip": {
            "title": "ZIP Code",
            "type": "string",
            "description": "Filter by exact 5-digit ZIP code."
          },
          "vpkOnly": {
            "title": "VPK Only",
            "type": "boolean",
            "description": "Return only providers that offer Voluntary Pre-Kindergarten (VPK).",
            "default": false
          },
          "goldSealOnly": {
            "title": "Gold Seal Only",
            "type": "boolean",
            "description": "Return only providers with Gold Seal Quality Care certification.",
            "default": false
          },
          "nationallyAccreditedOnly": {
            "title": "Nationally Accredited Only",
            "type": "boolean",
            "description": "Return only nationally accredited providers (NAEYC, NECPA, NAFCC, APPLE, AdvancED, COA).",
            "default": false
          },
          "headStartOnly": {
            "title": "Head Start Only",
            "type": "boolean",
            "description": "Return only providers that participate in the Head Start program.",
            "default": false
          },
          "infantCareOnly": {
            "title": "Infant Care Only",
            "type": "boolean",
            "description": "Return only providers that offer infant care services.",
            "default": false
          },
          "activeLicenseOnly": {
            "title": "Active License Only",
            "type": "boolean",
            "description": "Return only providers with a currently active, non-expired license.",
            "default": false
          },
          "qualitySignal": {
            "title": "Quality Signal",
            "enum": [
              "Alta",
              "Media",
              "Basica"
            ],
            "type": "string",
            "description": "Filter by calculated quality tier: Alta (nationally accredited), Media (Gold Seal or active School Readiness), Basica (standard)."
          },
          "programType": {
            "title": "Program Type",
            "type": "string",
            "description": "Filter by program type from the DCF registry (e.g. Child Care Facility, Family Day Care Home)."
          },
          "licenseStatus": {
            "title": "License Status",
            "type": "string",
            "description": "Filter by license status value from the DCF registry (e.g. Licensed, Registered)."
          },
          "minCapacity": {
            "title": "Min Capacity",
            "type": "integer",
            "description": "Return only providers with licensed capacity greater than or equal to this value."
          },
          "maxCapacity": {
            "title": "Max Capacity",
            "type": "integer",
            "description": "Return only providers with licensed capacity less than or equal to this value."
          },
          "nameContains": {
            "title": "Name Contains",
            "type": "string",
            "description": "Return only providers whose name contains this text (case-insensitive partial match)."
          },
          "minCompleteness": {
            "title": "Min Record Completeness (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Return only providers with record completeness score at or above this percentage (0-100)."
          },
          "sortBy": {
            "title": "Sort By",
            "enum": [
              "capacity",
              "name",
              "county",
              "completeness",
              "yearsInOperation",
              "serviceCount"
            ],
            "type": "string",
            "description": "Sort results by this field. Defaults to no sorting."
          },
          "sortDescending": {
            "title": "Sort Descending",
            "type": "boolean",
            "description": "Sort in descending order when sortBy is set. Default is true (highest first).",
            "default": true
          },
          "includeMarketAnalysis": {
            "title": "Include Market Analysis",
            "type": "boolean",
            "description": "Generate a county-level market intelligence report saved to the MARKET_REPORT key-value store key.",
            "default": false
          },
          "limit": {
            "title": "Max Results",
            "minimum": 1,
            "type": "integer",
            "description": "Limit the total number of provider records returned. Leave blank for all results."
          },
          "sourceUrl": {
            "title": "Source URL Override",
            "type": "string",
            "description": "Override the default DCF Excel URL. Leave blank to use the official daily-updated source."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}