{
  "openapi": "3.0.1",
  "info": {
    "title": "🐋 13F Holdings Delta Tracker — Hedge-Fund Position Changes",
    "description": "Track quarter-over-quarter CHANGES in institutional 13F filings. New positions, increased stakes, decreased stakes, full exits. What Buffett, Tiger Global, Bridgewater, Renaissance just bought or sold. Direct SEC EDGAR. Pay-per-delta. Bloomberg / WhaleWisdom alternative.",
    "version": "0.0",
    "x-build-id": "f3lQXcyvt5jBflBLB"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/nexgendata~13f-holdings-delta-tracker/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-nexgendata-13f-holdings-delta-tracker",
        "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/nexgendata~13f-holdings-delta-tracker/runs": {
      "post": {
        "operationId": "runs-sync-nexgendata-13f-holdings-delta-tracker",
        "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/nexgendata~13f-holdings-delta-tracker/run-sync": {
      "post": {
        "operationId": "run-sync-nexgendata-13f-holdings-delta-tracker",
        "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": {
          "fund_names": {
            "title": "Fund names to track",
            "type": "array",
            "description": "List of fund / institutional manager names to track. Matches case-insensitive substring against the SEC EDGAR 13F filer name. Examples: 'Berkshire Hathaway' (Warren Buffett), 'Tiger Global', 'Bridgewater', 'Renaissance Technologies', 'Pershing Square' (Ackman), 'Third Point' (Loeb), 'Greenlight' (Einhorn), 'Appaloosa' (Tepper), 'Citadel', 'Point72' (Cohen), 'Coatue', 'Lone Pine'. Leave empty and use fund_ciks for exact-match lookups, or leave both empty to use the curated 50-fund whale list.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "fund_ciks": {
            "title": "Fund CIKs (exact match)",
            "type": "array",
            "description": "List of SEC CIK numbers for exact-match fund lookups. CIK is the SEC's permanent identifier for every registered filer. Examples: 0001067983 (Berkshire Hathaway), 0001167483 (Tiger Global Management), 0001350694 (Bridgewater Associates), 0001037389 (Renaissance Technologies), 0001336528 (Pershing Square), 0001040273 (Third Point), 0001079114 (Greenlight Capital). Use this when fund_names is ambiguous or the manager has multiple entities. Look up CIKs at https://www.sec.gov/cgi-bin/browse-edgar.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "delta_types": {
            "title": "Delta types to include",
            "type": "array",
            "description": "Which categories of position changes to include. NEW = position went from zero last quarter to non-zero this quarter (highest-signal — fresh conviction trade). INCREASED = existing position grew in share count. DECREASED = existing position shrunk. EXITED = position went to zero (full exit, also high-signal — fund lost conviction or rotated). Most quant signal portfolios use only NEW + INCREASED.",
            "default": [
              "NEW",
              "INCREASED",
              "DECREASED",
              "EXITED"
            ],
            "items": {
              "type": "string"
            }
          },
          "min_value_usd": {
            "title": "Minimum position value (USD)",
            "minimum": 0,
            "maximum": 10000000000,
            "type": "integer",
            "description": "Skip delta records where the current-quarter position value is below this threshold. Filters out trivial $1K rebalances. Common thresholds: $1,000,000 (material trades only), $10,000,000 (top-50 holdings for mega-funds), $100,000,000 (mega-cap conviction trades — Berkshire-tier signals). Leave at 0 to include every delta no matter how small.",
            "default": 0
          },
          "min_shares_change_pct": {
            "title": "Minimum % share change",
            "minimum": 0,
            "maximum": 1000,
            "type": "integer",
            "description": "For INCREASED and DECREASED deltas only — require the absolute percentage change in share count to exceed this threshold. Filters out routine 1-2% rebalances. Recommended: 10 (material rebalance), 25 (meaningful conviction shift), 50 (high-conviction add/trim). NEW and EXITED records always pass (infinite/full %). Leave at 0 for no filter.",
            "default": 0
          },
          "limit": {
            "title": "Max delta records to return",
            "minimum": 1,
            "maximum": 2000,
            "type": "integer",
            "description": "Maximum number of delta records to push to the dataset (one row per stock-level position change per fund). Typical hedge-fund-tracker analysts pull 50–200 deltas per refresh — that's the top conviction moves across the whale list. Heavy backtesters pull 1000+. Each delta record is a pay-per-result charge of $0.25.",
            "default": 50
          },
          "include_top10_flag": {
            "title": "Flag entries into the top 10 holdings",
            "type": "boolean",
            "description": "If true, compute the boolean is_top10_new flag for each NEW / INCREASED delta — true means the stock entered the fund's top 10 portfolio positions this quarter (by USD value). This is the strongest single-delta signal — when a mega-fund vaults a new name into the top 10 it usually means a multi-billion-dollar capital commitment. Set to false to skip the extra computation if you only need raw deltas.",
            "default": true
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}