{
  "openapi": "3.0.1",
  "info": {
    "title": "Technical Q&A Search - Stack Exchange Question Miner",
    "description": "Search Stack Overflow and 27 sister Stack Exchange sites by keyword or tag. Returns question title, plain-text body excerpt, tags, score, views, answer count, accepted-answer flag, author reputation and URL - optionally with the top answer. No API key.",
    "version": "0.1",
    "x-build-id": "qAsn0vlGDMuIkvN3Y"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/darknezz~technical-qa-search/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-darknezz-technical-qa-search",
        "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/darknezz~technical-qa-search/runs": {
      "post": {
        "operationId": "runs-sync-darknezz-technical-qa-search",
        "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/darknezz~technical-qa-search/run-sync": {
      "post": {
        "operationId": "run-sync-darknezz-technical-qa-search",
        "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": {
          "queries": {
            "title": "Search queries",
            "type": "array",
            "description": "Free-text searches, e.g. \"python asyncio\", \"kubernetes ingress\", \"postgres vacuum bloat\". Each query runs against every selected site.",
            "items": {
              "type": "string"
            },
            "default": [
              "python asyncio"
            ]
          },
          "sites": {
            "title": "Sites",
            "type": "array",
            "description": "Stack Exchange sites to search (api_site_parameter). Defaults to Stack Overflow. Any valid api_site_parameter works, not just the curated list.",
            "items": {
              "type": "string",
              "enum": [
                "stackoverflow",
                "serverfault",
                "superuser",
                "askubuntu",
                "unix",
                "softwareengineering",
                "dba",
                "security",
                "networkengineering",
                "devops",
                "sre",
                "datascience",
                "stats",
                "math",
                "cstheory",
                "robotics",
                "ai",
                "gamedev",
                "softwarerecs",
                "webapps",
                "android",
                "apple",
                "wordpress",
                "salesforce",
                "magento",
                "arduino",
                "raspberrypi",
                "tex"
              ]
            },
            "default": [
              "stackoverflow"
            ]
          },
          "tagged": {
            "title": "Required tags",
            "type": "array",
            "description": "Optional tag filter (ANDed by the API), e.g. [\"python\", \"asyncio\"]. Empty means keyword search only.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "sort": {
            "title": "Sort by",
            "enum": [
              "relevance",
              "votes",
              "creation",
              "activity"
            ],
            "type": "string",
            "description": "Order the API returns matches in. All results are sorted descending.",
            "default": "relevance"
          },
          "minScore": {
            "title": "Minimum score",
            "minimum": 0,
            "type": "integer",
            "description": "Drop questions scoring below this (upvotes minus downvotes). Use 1+ to skip unanswered noise; 5+ for curated lists.",
            "default": 0
          },
          "minAnswers": {
            "title": "Minimum answer count",
            "minimum": 0,
            "type": "integer",
            "description": "Drop questions with fewer than this many answers. 1 keeps only questions someone actually answered.",
            "default": 0
          },
          "acceptedOnly": {
            "title": "Only questions with an accepted answer",
            "type": "boolean",
            "description": "Keep only questions whose asker accepted an answer — the highest-signal technical Q&A pairs.",
            "default": false
          },
          "maxResultsPerQuery": {
            "title": "Max results per query and site",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum questions emitted per query per site (also the API page size).",
            "default": 25
          },
          "includeBody": {
            "title": "Include question body excerpt",
            "type": "boolean",
            "description": "Include the question text converted from HTML to plain text.",
            "default": true
          },
          "bodyExcerptChars": {
            "title": "Body excerpt length",
            "minimum": 100,
            "maximum": 8000,
            "type": "integer",
            "description": "Maximum characters of the question body excerpt (cut at a word boundary).",
            "default": 1000
          },
          "includeTopAnswer": {
            "title": "Include the top answer",
            "type": "boolean",
            "description": "Fetch the highest-voted answer for every emitted question (one extra API call per query). Costs nothing extra per item, but uses the anonymous API quota.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}