{
  "openapi": "3.0.1",
  "info": {
    "title": "LinkedIn Ads Library Scraper — No Login, No Cookies",
    "description": "Scrapes LinkedIn's official Ad Library to extract advertiser names, ad copy, headlines, creative images, video posters, and detail URLs. Filter by keyword (advertiser or ad text), 250+ countries, date range, and creative type. No login, no cookies, no account ban risk. $1.50 per 1,000 ads.",
    "version": "0.0",
    "x-build-id": "Lq3iTQxZWrmVUJRR7"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/logiover~linkedin-ad-library-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-logiover-linkedin-ad-library-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/logiover~linkedin-ad-library-scraper/runs": {
      "post": {
        "operationId": "runs-sync-logiover-linkedin-ad-library-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/logiover~linkedin-ad-library-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-logiover-linkedin-ad-library-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",
        "properties": {
          "keyword": {
            "title": "Search Keyword",
            "type": "string",
            "description": "Term to search the LinkedIn Ad Library for. Examples: 'monday', 'salesforce', 'crm software'. Matched against advertiser names by default — change `keywordType` to 'keyword' to search ad copy text instead. Leave empty to browse all ads in the selected countries.",
            "default": ""
          },
          "keywordType": {
            "title": "Keyword Search Mode",
            "enum": [
              "accountOwner",
              "keyword"
            ],
            "type": "string",
            "description": "How the keyword is matched. 'accountOwner' searches advertiser/brand names — best for tracking specific competitors. 'keyword' performs full-text search across ad copy and headlines — best for industry/topic research.",
            "default": "accountOwner"
          },
          "countries": {
            "title": "Countries",
            "type": "array",
            "description": "Filter by countries where the ad was shown. Use ISO 3166-1 alpha-2 codes ('US', 'GB', 'DE', 'FR', 'TR', etc.). LinkedIn supports 250+ countries. Multiple values can be combined. Leave empty for worldwide.",
            "default": [
              "US"
            ],
            "items": {
              "type": "string"
            }
          },
          "dateOption": {
            "title": "Date Range Preset",
            "enum": [
              "current-month",
              "last-30-days",
              "last-year"
            ],
            "type": "string",
            "description": "Quick date filter for when ads were active. Ignored if a custom `startDate` is provided. 'current-month' = ads active this month, 'last-30-days' = rolling 30-day window, 'last-year' = ads from the past 12 months.",
            "default": "last-year"
          },
          "startDate": {
            "title": "Custom Start Date",
            "type": "string",
            "description": "Beginning of custom date range in YYYY-MM-DD format (e.g., '2025-01-01'). When provided, overrides `dateOption`. Pair with `endDate` for a bounded range.",
            "default": null
          },
          "endDate": {
            "title": "Custom End Date",
            "type": "string",
            "description": "End of custom date range in YYYY-MM-DD format (e.g., '2025-12-31'). Used together with `startDate`. If only `startDate` is set, ads up to today are returned.",
            "default": null
          },
          "creativeTypes": {
            "title": "Creative Type Filter",
            "type": "array",
            "description": "Filter by ad format. Accepted values: 'SPONSORED_STATUS_UPDATE' (single image post), 'SPONSORED_VIDEO' (video ad), 'SPONSORED_UPDATE_LINKEDIN_ARTICLE' (article promotion), 'SPONSORED_UPDATE_EVENT' (event ad), 'SPONSORED_UPDATE_CAROUSEL' (carousel). Multiple values can be combined. Leave empty for all formats.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "maxResults": {
            "title": "Max Results",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of ads to save to the dataset. The scraper paginates 24 ads per page until this cap is hit or no more pages remain. Set to 0 for unlimited.",
            "default": 1000
          },
          "fetchAdDetails": {
            "title": "Fetch Full Ad Details",
            "type": "boolean",
            "description": "When enabled, fetches each ad's detail page (`/ad-library/detail/{id}`) to retrieve impressions range, payer info, CTA URL, and date metadata. Produces richer output but doubles requests and run time.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}