{
  "openapi": "3.0.1",
  "info": {
    "title": "Hacker News Lead & Trend Monitor",
    "description": "lead generation, product research, founder research, trend monitoring, and competitive intelligence. It uses the public Hacker News Algolia API, so runs are fast, low-cost, and do not need a proxy by default.",
    "version": "0.0",
    "x-build-id": "hlWC0n78IMWx0e2VP"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/techionik9993~hacker-news-lead-trend-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-techionik9993-hacker-news-lead-trend-monitor",
        "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/techionik9993~hacker-news-lead-trend-monitor/runs": {
      "post": {
        "operationId": "runs-sync-techionik9993-hacker-news-lead-trend-monitor",
        "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/techionik9993~hacker-news-lead-trend-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-techionik9993-hacker-news-lead-trend-monitor",
        "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": {
          "searchQueries": {
            "title": "Search queries",
            "type": "array",
            "description": "Search terms to track on Hacker News. Use buyer-intent, competitor, product, hiring, or pain-point phrases.",
            "default": [
              "stripe alternative",
              "looking for crm",
              "need ai automation"
            ],
            "items": {
              "type": "string"
            }
          },
          "resultTypes": {
            "title": "Result types",
            "enum": [
              "both",
              "story",
              "comment"
            ],
            "type": "string",
            "description": "Choose whether to return stories, comments, or both. Comments often contain the strongest sales/research signals.",
            "default": "both"
          },
          "sort": {
            "title": "Sort",
            "enum": [
              "newest",
              "relevance"
            ],
            "type": "string",
            "description": "Newest is best for monitoring and fresh leads. Relevance is best for research.",
            "default": "newest"
          },
          "maxResults": {
            "title": "Max results",
            "minimum": 50,
            "maximum": 2000,
            "type": "integer",
            "description": "Maximum rows to write for the whole run. The minimum is 50 for better marketplace economics.",
            "default": 100
          },
          "pagesPerQuery": {
            "title": "Pages per query",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many Hacker News API pages to scan per query. Increase this when you need hundreds of results.",
            "default": 3
          },
          "maxResultsPerQuery": {
            "title": "Max results per query",
            "minimum": 0,
            "maximum": 1000,
            "type": "integer",
            "description": "Optional cap per search query so one broad keyword does not fill the entire run. Use 0 for no per-query cap.",
            "default": 0
          },
          "daysBack": {
            "title": "Days back",
            "minimum": 0,
            "maximum": 3650,
            "type": "integer",
            "description": "Only include results from the last N days. Use 0 to disable date filtering.",
            "default": 365
          },
          "includeContent": {
            "title": "Include content",
            "type": "boolean",
            "description": "Include story title and comment text/content where available.",
            "default": true
          },
          "intentKeywords": {
            "title": "Intent keywords",
            "type": "array",
            "description": "Keywords used to score buyer/research intent.",
            "default": [
              "need",
              "looking for",
              "recommend",
              "alternative",
              "hire",
              "problem",
              "pain",
              "switching",
              "building",
              "launched"
            ],
            "items": {
              "type": "string"
            }
          },
          "minimumRelevanceScore": {
            "title": "Minimum relevance score",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "Minimum number of meaningful query words that must appear in the row. Use 1 for clean output, 0 for broad research.",
            "default": 1
          },
          "minimumIntentScore": {
            "title": "Minimum intent score",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "Minimum number of intent keywords required. Use 0 for trends, 1+ for stronger lead-generation output.",
            "default": 0
          },
          "monitorChanges": {
            "title": "Monitor changes since last run",
            "type": "boolean",
            "description": "Compare against the previous saved snapshot and detect newly found HN rows.",
            "default": false
          },
          "onlyChanges": {
            "title": "Output only new rows",
            "type": "boolean",
            "description": "When monitoring is enabled, write only newly detected rows to the dataset.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}