{
  "service": "aeroleads",
  "displayName": "AeroLeads",
  "categories": [
    "Marketing",
    "Data"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Key",
      "placeholder": "aeroleads_api_key",
      "description": "AeroLeads API key sent as the api_key query parameter for LinkedIn and email lookup APIs. Find it in AeroLeads Settings under API Key after signing in: https://aeroleads.com/users/settings#api_key."
    }
  ],
  "homepageUrl": "https://aeroleads.com",
  "actions": [
    {
      "id": "aeroleads.get_details_from_linkedin_url",
      "service": "aeroleads",
      "name": "get_details_from_linkedin_url",
      "description": "Retrieve prospect details, emails, phone numbers, company, education, skills, and related profile data from a public LinkedIn profile URL using AeroLeads.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "linkedin_url": {
            "type": "string",
            "minLength": 1,
            "description": "Public LinkedIn profile URL for the prospect, such as https://www.linkedin.com/in/example."
          }
        },
        "additionalProperties": false,
        "required": [
          "linkedin_url"
        ],
        "description": "Request parameters for retrieving prospect details from a LinkedIn profile URL."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw LinkedIn profile enrichment details returned by AeroLeads, including prospect, email, phone, company, education, experience, skill, and social fields when available."
          },
          "successful": {
            "type": "boolean",
            "description": "Whether AeroLeads returned a successful enrichment result."
          },
          "message": {
            "type": "string",
            "description": "A status or error message returned by AeroLeads."
          }
        },
        "additionalProperties": false,
        "required": [
          "data",
          "successful"
        ],
        "description": "The normalized AeroLeads LinkedIn profile enrichment result."
      }
    }
  ]
}
