{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn Lead AI Outreach Message Generator",
    "description": "Generate personalized LinkedIn outreach messages, follow-ups, and email versions from lead data. Score prospects, detect pain points, and create reply-focused sequences that feel human and relevant. No scraping or automation, just smarter outreach to connect and convert better leads.",
    "version": "0.1",
    "x-build-id": "FeBpG1umZf3qXftC4"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/shahabuddin38~LinkedIn-Lead-AI-Outreach-Message-Generator/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-shahabuddin38-LinkedIn-Lead-AI-Outreach-Message-Generator",
        "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/shahabuddin38~LinkedIn-Lead-AI-Outreach-Message-Generator/runs": {
      "post": {
        "operationId": "runs-sync-shahabuddin38-LinkedIn-Lead-AI-Outreach-Message-Generator",
        "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/shahabuddin38~LinkedIn-Lead-AI-Outreach-Message-Generator/run-sync": {
      "post": {
        "operationId": "run-sync-shahabuddin38-LinkedIn-Lead-AI-Outreach-Message-Generator",
        "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": [
          "offerOrService"
        ],
        "properties": {
          "leads": {
            "title": "Leads",
            "type": "array",
            "description": "Lead objects with name, job title, company, LinkedIn URL, website, industry, and pain point."
          },
          "csvText": {
            "title": "Paste CSV Leads",
            "type": "string",
            "description": "Optional pasted CSV text with columns like name, jobTitle, companyName, industry, location, website, linkedinProfileUrl.",
            "default": ""
          },
          "offerOrService": {
            "title": "Your Offer / Service",
            "type": "string",
            "description": "What you want to sell or pitch."
          },
          "targetAudience": {
            "title": "Target Audience",
            "type": "string",
            "description": "Who you want to contact."
          },
          "messageGoal": {
            "title": "Outreach Goal",
            "enum": [
              "book_call",
              "free_audit",
              "start_conversation",
              "send_resource",
              "hire_candidate",
              "partnership"
            ],
            "type": "string",
            "description": "What action the outreach should aim to create.",
            "default": "book_call"
          },
          "messageStyle": {
            "title": "Message Style",
            "enum": [
              "soft",
              "direct",
              "consultative",
              "founder_style",
              "agency_style",
              "recruiter_style"
            ],
            "type": "string",
            "description": "The messaging style to use for the generated outreach.",
            "default": "consultative"
          },
          "tone": {
            "title": "Tone",
            "enum": [
              "friendly",
              "professional",
              "casual",
              "confident",
              "warm"
            ],
            "type": "string",
            "description": "Tone of voice for the generated messages.",
            "default": "friendly"
          },
          "language": {
            "title": "Language",
            "enum": [
              "en",
              "es",
              "fr",
              "de",
              "it",
              "pt",
              "ur",
              "hi",
              "ar"
            ],
            "type": "string",
            "description": "Language for message generation.",
            "default": "en"
          },
          "includeEmailVersion": {
            "title": "Include Email Version",
            "type": "boolean",
            "description": "Whether to include an email subject and email version for each lead.",
            "default": true
          },
          "includeObjectionHandling": {
            "title": "Include Objection Handling",
            "type": "boolean",
            "description": "Whether to generate common objections and suggested replies.",
            "default": true
          },
          "includeSequence": {
            "title": "Include Follow-up Sequence",
            "type": "boolean",
            "description": "Whether to generate the 4-step outreach sequence.",
            "default": true
          },
          "includeLeadScoring": {
            "title": "Include Lead Scoring",
            "type": "boolean",
            "description": "Whether to include lead qualification and reply scoring in the output.",
            "default": true
          },
          "maxLeads": {
            "title": "Maximum Leads",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Maximum number of leads to process and return.",
            "default": 25
          },
          "exportFormat": {
            "title": "Export Format",
            "enum": [
              "dataset",
              "json",
              "csv-ready"
            ],
            "type": "string",
            "description": "How to save the generated results in storage.",
            "default": "dataset"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}