linkedin_ads_list_creatives

List LinkedIn Creatives

Linkedin

Description

List LinkedIn Creatives (ads) for an ad account. Ad copy (headline, body text, destination URL) is always resolved from linked posts/shares.

Read-onlyIdempotentOpen-world

Usage

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "linkedin_ads_list_creatives",
    "arguments": {
      "account_id": "123456789",
      "reason": "User wants to see ads"
    }
  }
}

Parameters

NameTypeRequiredDescription
account_id string Required Ad account ID (numeric, without URN prefix).minLength: 1
reason string Required Why this tool call is neededminLength: 1, maxLength: 500
Optional parameters (7)
NameTypeRequiredDescription
campaign_ids array Optional Filter by campaign IDs (numeric).
status array Optional Filter by intended status. Defaults to [ACTIVE, PAUSED, DRAFT].
creative_id string Optional Fetch a single creative by URN or numeric ID.
creative_ids array Optional Fetch specific creatives by numeric IDs (batch filter).
limit integer Optional min: 1, max: 100
cursor string Optional
refresh boolean Optional

Examples

List active creatives

{
  "account_id": "123456789",
  "reason": "User wants to see ads"
}

hopkin linkedin creatives list --account 123456789

By campaign

{
  "account_id": "123456789",
  "campaign_ids": [
    "654321"
  ],
  "reason": "Show creatives for a specific campaign"
}

hopkin linkedin creatives list --account 123456789 --campaign-ids 654321

With content resolved

{
  "account_id": "123456789",
  "reason": "Show ad copy and headline text"
}

hopkin linkedin creatives list --account 123456789