{
  "openapi": "3.0.1",
  "info": {
    "title": "SEC EDGAR · Pharma Licensing Deals · By Company List",
    "description": "Export pharma/biotech licensing, collaboration and M&A exhibits from SEC EDGAR. Paste tickers or use the built-in top list — company, filing, exhibit title, document URL. No API key",
    "version": "1.3",
    "x-build-id": "sD9eVt0iaoCO7ZXFq"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/corent1robert~sec-edgar-licensing-deals-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-corent1robert-sec-edgar-licensing-deals-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/corent1robert~sec-edgar-licensing-deals-scraper/runs": {
      "post": {
        "operationId": "runs-sync-corent1robert-sec-edgar-licensing-deals-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/corent1robert~sec-edgar-licensing-deals-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-corent1robert-sec-edgar-licensing-deals-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",
        "required": [
          "companies"
        ],
        "properties": {
          "companies": {
            "title": "Companies",
            "type": "array",
            "description": "One ticker or name per line. Formats: `PFE` · `Pfizer` · `Pfizer|PFE`.",
            "items": {
              "type": "string"
            }
          },
          "dateFrom": {
            "title": "Filing date from",
            "type": "string",
            "description": "Only filings on or after this date (YYYY-MM-DD). Empty = no lower bound."
          },
          "dateTo": {
            "title": "Filing date to",
            "type": "string",
            "description": "Only filings on or before this date (YYYY-MM-DD). Empty = no upper bound."
          },
          "maxFilingsPerCompany": {
            "title": "Max filings per company (0 = all)",
            "minimum": 0,
            "type": "integer",
            "description": "Newest filings first. 40 is a good first-run default. 0 = full history in the date window.",
            "default": 120
          },
          "maxDeals": {
            "title": "Max deal rows (0 = all)",
            "minimum": 0,
            "type": "integer",
            "description": "Stop after this many deal rows. Handy for tests. 0 = no row ceiling.",
            "default": 0
          },
          "forms": {
            "title": "Filing types",
            "type": "array",
            "description": "SEC forms to open. 8-K = new deals; 10-K / 10-Q = material contracts; 20-F / 6-K = foreign issuers.",
            "default": [
              "8-K",
              "8-K/A",
              "10-K",
              "10-K/A",
              "10-Q",
              "10-Q/A",
              "20-F",
              "6-K",
              "S-4",
              "DEF 14A"
            ],
            "items": {
              "type": "string"
            }
          },
          "requireDealKeywords": {
            "title": "Require deal keywords in the title",
            "type": "boolean",
            "description": "ON: only license / collaboration / M&A-style titles. OFF: keep EX-10 / EX-2 / EX-99 except employment, leases, credit facilities and stock plans.",
            "default": false
          },
          "peekExhibitTitles": {
            "title": "Recover full agreement titles",
            "type": "boolean",
            "description": "When the filing index only says EX-10.3, read the document head to recover “License Agreement …”. More accurate.",
            "default": true
          },
          "harvestExhibitIndex": {
            "title": "Include 10-K Item 15 exhibit list",
            "type": "boolean",
            "description": "Richest source of historical contracts (titles, partners, dates), including incorporated-by-reference deals.",
            "default": true
          },
          "resolveIncorporated": {
            "title": "Follow incorporated-by-reference links",
            "type": "boolean",
            "description": "Resolve Item 15 references to the original exhibit URL so you get a real document link.",
            "default": true
          },
          "extractFields": {
            "title": "Extract partner, dates & financial hints",
            "type": "boolean",
            "description": "Fill partner, signing/effective dates, upfront/milestones/royalties when disclosed (marks redacted when [***]).",
            "default": true
          },
          "dedupeMode": {
            "title": "Deduplicate amendments",
            "enum": [
              "keep_base_and_latest",
              "keep_latest",
              "off"
            ],
            "type": "string",
            "description": "Group amendments of the same underlying deal into one family.",
            "default": "keep_base_and_latest"
          },
          "asiaRelatedOnly": {
            "title": "Asia / China related deals only",
            "type": "boolean",
            "description": "Keep rows that mention China, Japan, Korea or broader Asia (or company HQ).",
            "default": false
          },
          "includePressExhibits": {
            "title": "Include EX-99 press releases",
            "type": "boolean",
            "description": "OFF by default — press releases often mention deals without being the contract.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}