{
  "openapi": "3.0.1",
  "info": {
    "title": "Creator Monetization Lead Finder",
    "description": "HTTP-first creator URL enrichment Actor that extracts public emails, social links, monetization signals, commerce links, affiliate links, products, prices, and deterministic lead scores.",
    "version": "0.1",
    "x-build-id": "1blcXz8oeIsnp4wsX"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/solutionssmart~creator-monetization-lead-finder/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-solutionssmart-creator-monetization-lead-finder",
        "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/solutionssmart~creator-monetization-lead-finder/runs": {
      "post": {
        "operationId": "runs-sync-solutionssmart-creator-monetization-lead-finder",
        "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/solutionssmart~creator-monetization-lead-finder/run-sync": {
      "post": {
        "operationId": "run-sync-solutionssmart-creator-monetization-lead-finder",
        "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": [
          "startUrls"
        ],
        "properties": {
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Creator bio links, landing pages, storefronts, profile URLs, or websites to enrich.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxRequestsPerCrawl": {
            "title": "Max requests per crawl",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on total processed requests across all roots and followed links.",
            "default": 500
          },
          "maxDepth": {
            "title": "Max depth",
            "minimum": 0,
            "maximum": 3,
            "type": "integer",
            "description": "How many outbound enrichment hops to follow from each root URL.",
            "default": 1
          },
          "maxPagesPerDomain": {
            "title": "Max pages per domain",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Limit crawl expansion on each domain to avoid deep catalog or low-value crawling.",
            "default": 5
          },
          "followOutboundLinks": {
            "title": "Follow outbound links",
            "type": "boolean",
            "description": "Follow selected high-value business, store, product, booking, and newsletter links.",
            "default": true
          },
          "sameDomainOnly": {
            "title": "Same domain only",
            "type": "boolean",
            "description": "Restrict followed links to the original domain only.",
            "default": false
          },
          "extractEmails": {
            "title": "Extract emails",
            "type": "boolean",
            "description": "Extract public email addresses from DOM and embedded JSON.",
            "default": true
          },
          "extractPhones": {
            "title": "Extract phones",
            "type": "boolean",
            "description": "Extract public phone numbers when present.",
            "default": false
          },
          "extractSocialLinks": {
            "title": "Extract social links",
            "type": "boolean",
            "description": "Classify outbound social profile links by network.",
            "default": true
          },
          "extractProducts": {
            "title": "Extract products",
            "type": "boolean",
            "description": "Extract products and offers using DOM and structured-data heuristics.",
            "default": true
          },
          "extractPrices": {
            "title": "Extract prices",
            "type": "boolean",
            "description": "Extract visible and embedded pricing signals.",
            "default": true
          },
          "extractAffiliateLinks": {
            "title": "Extract affiliate links",
            "type": "boolean",
            "description": "Detect common affiliate networks and referral patterns.",
            "default": true
          },
          "extractCommerceSignals": {
            "title": "Extract commerce signals",
            "type": "boolean",
            "description": "Detect stores, monetization platforms, payment links, and booking links.",
            "default": true
          },
          "includeRawLinks": {
            "title": "Include raw links",
            "type": "boolean",
            "description": "Include normalized extracted links in the dataset output.",
            "default": true
          },
          "includeAssetLinks": {
            "title": "Include asset links",
            "type": "boolean",
            "description": "Include asset and media URLs in emitted link arrays when explicitly needed.",
            "default": false
          },
          "deepProductExtraction": {
            "title": "Deep product extraction",
            "type": "boolean",
            "description": "Follow and parse large ecommerce destination pages instead of only classifying them as product or commerce sources.",
            "default": false
          },
          "maxProductsPerCreator": {
            "title": "Max products per creator",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Cap visible or structured product extraction per creator profile.",
            "default": 25
          },
          "maxProductPagesPerCreator": {
            "title": "Max product pages per creator",
            "minimum": 0,
            "maximum": 25,
            "type": "integer",
            "description": "Cap followed product detail pages when deep product extraction is enabled.",
            "default": 5
          },
          "includeDebugFields": {
            "title": "Include debug fields",
            "type": "boolean",
            "description": "Include optional extractor debug fields in dataset output.",
            "default": false
          },
          "includeEmptyResults": {
            "title": "Include empty results",
            "type": "boolean",
            "description": "Push low-signal or error-only items even when no useful enrichment was found.",
            "default": false
          },
          "debugMode": {
            "title": "Debug mode",
            "type": "boolean",
            "description": "Include debug-friendly error output for failed pages.",
            "default": false
          },
          "useBrowserFallback": {
            "title": "Use browser fallback",
            "type": "boolean",
            "description": "Use Playwright only for pages Cheerio cannot process. Increases compute cost.",
            "default": false
          },
          "browserFallbackOnBlockedOnly": {
            "title": "Browser fallback on blocked root pages only",
            "type": "boolean",
            "description": "When browser fallback is enabled, send only blocked original input URLs to Playwright by default.",
            "default": true
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional Apify proxy configuration for requests."
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum concurrent requests. Keep this moderate for stable low-cost enrichment.",
            "default": 10
          },
          "minLeadScore": {
            "title": "Minimum lead score",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Only push items with at least this lead score.",
            "default": 0
          },
          "dedupeBy": {
            "title": "Dedupe by",
            "enum": [
              "url",
              "domain",
              "email"
            ],
            "type": "string",
            "description": "Primary deduplication strategy for followed links and results.",
            "default": "url"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}