{
  "openapi": "3.0.1",
  "info": {
    "title": "SEC Insider & Corporate Catalyst Radar",
    "description": "Monitor SEC EDGAR for Form 4 insider transactions, 8-K corporate events, 13D/13G ownership changes, executive changes, financings, acquisitions, and other evidence-backed corporate signals.",
    "version": "1.0",
    "x-build-id": "k6cVhX6Q5lrYIIuQd"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/herazur~sec-corporate-catalyst-insider-radar/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-herazur-sec-corporate-catalyst-insider-radar",
        "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/herazur~sec-corporate-catalyst-insider-radar/runs": {
      "post": {
        "operationId": "runs-sync-herazur-sec-corporate-catalyst-insider-radar",
        "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/herazur~sec-corporate-catalyst-insider-radar/run-sync": {
      "post": {
        "operationId": "run-sync-herazur-sec-corporate-catalyst-insider-radar",
        "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",
        "required": [
          "companies"
        ],
        "properties": {
          "companies": {
            "title": "Companies",
            "minItems": 1,
            "type": "array",
            "description": "Companies to monitor. Each entry needs a stable inputId and either a ticker or CIK.",
            "items": {
              "type": "object",
              "required": [
                "inputId"
              ],
              "properties": {
                "inputId": {
                  "type": "string",
                  "title": "Input ID",
                  "description": "Your stable correlation ID.",
                  "minLength": 1
                },
                "ticker": {
                  "type": "string",
                  "title": "Ticker",
                  "description": "US ticker resolved with the official SEC mapping."
                },
                "cik": {
                  "type": "string",
                  "title": "CIK",
                  "description": "SEC Central Index Key, with or without leading zeros."
                }
              }
            },
            "default": [
              {
                "inputId": "aapl",
                "ticker": "AAPL"
              },
              {
                "inputId": "tsla",
                "cik": "0001318605"
              }
            ]
          },
          "monitorId": {
            "title": "Monitor ID",
            "type": "string",
            "description": "Stable state partition for this watchlist. Actor Tasks automatically use their task ID when this is empty. Set this when running directly with multiple independent watchlists.",
            "default": ""
          },
          "forms": {
            "title": "Filing forms",
            "type": "array",
            "description": "Supported event-driven SEC forms. Form 4/A is followed automatically when Form 4 is selected.",
            "items": {
              "type": "string",
              "enum": [
                "8-K",
                "4",
                "4/A",
                "SC 13D",
                "SC 13D/A",
                "SC 13G",
                "SC 13G/A"
              ],
              "enumTitles": [
                "8-K",
                "Form 4",
                "Form 4 amendment",
                "Schedule 13D",
                "Schedule 13D amendment",
                "Schedule 13G",
                "Schedule 13G amendment"
              ]
            },
            "default": [
              "8-K",
              "4",
              "SC 13D",
              "SC 13D/A",
              "SC 13G",
              "SC 13G/A"
            ]
          },
          "mode": {
            "title": "Mode",
            "enum": [
              "MONITOR",
              "SNAPSHOT"
            ],
            "type": "string",
            "description": "SNAPSHOT emits recent results without changing history. MONITOR persists accession state and emits only newly observed results after its baseline run.",
            "default": "MONITOR"
          },
          "lookbackDays": {
            "title": "Lookback days",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "Recent calendar-day window to inspect (1–365).",
            "default": 7
          },
          "userAgent": {
            "title": "SEC User-Agent",
            "type": "string",
            "description": "Identifiable organization plus contact email or website, required by SEC fair-access policy. Can also be set with SEC_USER_AGENT.",
            "default": "Herazur SEC Catalyst Radar contact@herazur.com"
          },
          "maxRequestsPerSecond": {
            "title": "Maximum SEC requests per second",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "Global limit. The Actor caps this below the SEC's published ceiling.",
            "default": 5
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}