{
  "openapi": "3.0.1",
  "info": {
    "title": "Craigslist Scraper | $1.5 / 1k | Fast & Reliable",
    "description": "Scrape Craigslist listings with emails included. Capture titles, prices, descriptions, images, categories and location data in clean JSON/CSV. Great for lead gen, local market research, price tracking and monitoring fresh posts.",
    "version": "0.2",
    "x-build-id": "2sqm76vLeKT8XUC89"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/fatihtahta~craigslist-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-fatihtahta-craigslist-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/fatihtahta~craigslist-scraper/runs": {
      "post": {
        "operationId": "runs-sync-fatihtahta-craigslist-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/fatihtahta~craigslist-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-fatihtahta-craigslist-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": {
          "startUrls": {
            "title": "Add Craigslist URLs",
            "type": "array",
            "description": "Paste one or more Craigslist URLs. Search and category URLs collect matching listing records; individual listing URLs collect that specific listing.",
            "items": {
              "type": "string"
            }
          },
          "queries": {
            "title": "Add Search Terms",
            "type": "array",
            "description": "Enter one or more keywords or phrases, such as furniture, bicycle, or yard sale. Leave this empty when you only want to collect from direct URLs.",
            "items": {
              "type": "string"
            }
          },
          "locationCode": {
            "title": "Choose Craigslist Location",
            "type": "string",
            "description": "Enter the Craigslist city subdomain, such as miami, newyork, or chattanooga. This is required for query-based searches; direct Craigslist URLs can also provide the location automatically."
          },
          "category": {
            "title": "Select Listing Category",
            "enum": [
              "sss",
              "gms",
              "jjj",
              "hhh",
              "ccc",
              "eee",
              "ggg",
              "rrr",
              "bbb"
            ],
            "type": "string",
            "description": "Select the Craigslist category to search when using search terms. Choose Garage & Moving Sales when you want yard sale and estate sale listings.",
            "default": "sss"
          },
          "minPrice": {
            "title": "Set Minimum Price",
            "minimum": 0,
            "type": "integer",
            "description": "Include listings priced at or above this amount. Leave empty when you do not need a lower price boundary."
          },
          "maxPrice": {
            "title": "Set Maximum Price",
            "minimum": 0,
            "type": "integer",
            "description": "Include listings priced at or below this amount. Leave empty when you do not need an upper price boundary."
          },
          "soldBy": {
            "title": "Choose Seller Type",
            "enum": [
              "owner",
              "dealer",
              ""
            ],
            "type": "string",
            "description": "Filter listings by private owners, dealers, or all sellers. Leave the default when seller type does not matter.",
            "default": ""
          },
          "freeOnly": {
            "title": "Include Only Free Listings",
            "type": "boolean",
            "description": "Return only listings marked as free. When this is enabled, price range filters no longer affect the search.",
            "default": false
          },
          "hasPic": {
            "title": "Require Photos",
            "type": "boolean",
            "description": "Return only listings that include at least one photo. This is useful when images are required for review, enrichment, or downstream workflows.",
            "default": false
          },
          "postedToday": {
            "title": "Include Only Recently Posted Listings",
            "type": "boolean",
            "description": "Return only listings posted in the last 24 hours. Use this when monitoring fresh inventory or time-sensitive opportunities.",
            "default": false
          },
          "startDate": {
            "title": "Set Earliest Sale Date",
            "type": "string",
            "description": "Include garage sale listings whose sale date is on or after this date. Use YYYY-MM-DD format, for example 2026-05-23."
          },
          "endDate": {
            "title": "Set Latest Sale Date",
            "type": "string",
            "description": "Include garage sale listings whose sale date is on or before this date. Use the same date as the start date to collect one sale day."
          },
          "hideDuplicates": {
            "title": "Hide Duplicate Listings",
            "type": "boolean",
            "description": "Ask Craigslist to reduce duplicate listings in search results. This can make review and reporting cleaner when sellers post similar items more than once.",
            "default": false
          },
          "deliveryAvailable": {
            "title": "Require Delivery Availability",
            "type": "boolean",
            "description": "Return only listings marked as offering delivery. Use this when pickup-only listings are not useful for your workflow.",
            "default": false
          },
          "limit": {
            "title": "Set Maximum Listings",
            "minimum": 10,
            "type": "integer",
            "description": "Stop the run after this many listings have been saved. Use a smaller number for quick checks and a larger number for broader collection.",
            "default": 50000
          },
          "proxyConfiguration": {
            "title": "Set Up Proxy Connection",
            "type": "object",
            "description": "Choose a proxy configuration when you need region-specific access or more controlled connection behavior. Leave the default in place unless your workflow requires a different network setup.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": []
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}