{
  "openapi": "3.0.1",
  "info": {
    "title": "🏠 US Property Records Scraper — Owner, Tax & Value",
    "description": "Scrape public county property/appraisal records: owner name, address, appraised & market value, account number. Public government data, no login. For real-estate investors, wholesalers, agents & analysts. Starts with Harris County (Houston, TX).",
    "version": "1.0",
    "x-build-id": "38dBbS4beIH0rbEOr"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/inexhaustible_glass~us-property-records/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-inexhaustible_glass-us-property-records",
        "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/inexhaustible_glass~us-property-records/runs": {
      "post": {
        "operationId": "runs-sync-inexhaustible_glass-us-property-records",
        "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/inexhaustible_glass~us-property-records/run-sync": {
      "post": {
        "operationId": "run-sync-inexhaustible_glass-us-property-records",
        "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": "🏛️ Location (county / state)",
            "enum": [
              "harris",
              "tarrant",
              "florida"
            ],
            "type": "string",
            "description": "Pick the area to scrape. More states & counties added regularly.",
            "default": "harris"
          },
          "city": {
            "title": "🏙️ City (optional)",
            "type": "string",
            "description": "Filter to a city. Try HOUSTON, PASADENA, KATY, SPRING."
          },
          "zip": {
            "title": "📮 ZIP code (optional)",
            "type": "string",
            "description": "Filter to a ZIP code. Example: 77002."
          },
          "ownerName": {
            "title": "👤 Owner name contains (optional)",
            "type": "string",
            "description": "Owner name contains this text. Examples: SMITH, LLC, CENTERPOINT."
          },
          "addressContains": {
            "title": "📍 Address contains (optional)",
            "type": "string",
            "description": "Address contains this text. Examples: MAIN ST, WESTHEIMER."
          },
          "account": {
            "title": "🔢 Account / parcel number (optional)",
            "type": "string",
            "description": "Exact appraisal account number for one specific property."
          },
          "subdivision": {
            "title": "🏘️ Subdivision contains",
            "type": "string",
            "description": "Find properties whose subdivision/neighborhood contains this text, e.g. 'COPPERFIELD'."
          },
          "stateClass": {
            "title": "🏷️ State class code (optional)",
            "type": "string",
            "description": "Appraisal state-class code, e.g. A1 = real residential single-family, A2 = mobile home, F1 = commercial, J3 = utility. Leave empty for all."
          },
          "minValue": {
            "title": "💰 Min appraised value (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only properties with appraised value >= this. e.g. 200000."
          },
          "maxValue": {
            "title": "💰 Max appraised value (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only properties with appraised value <= this. e.g. 1000000."
          },
          "minMarketValue": {
            "title": "💵 Min market value (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only properties with market value >= this."
          },
          "maxMarketValue": {
            "title": "💵 Max market value (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only properties with market value <= this."
          },
          "customWhere": {
            "title": "⚙️ Advanced: custom filter (power users)",
            "type": "string",
            "description": "Raw ArcGIS SQL where-clause appended with AND, e.g. \"appr_val>500000 AND state_class='A1'\". Leave empty unless you know the field names."
          },
          "maxResults": {
            "title": "🔢 Max records",
            "minimum": 1,
            "maximum": 500000,
            "type": "integer",
            "description": "How many property records to pull. Start small (100) to preview, then increase.",
            "default": 100
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}