LinkedInget/get-user-articles

Get User Articles

Article API
Cost / request

$0.01

Response format

JSON

Protocol

REST

About this endpoint

List all articles published by a specific LinkedIn user. Returns article titles, publication dates, and preview text. Use to assess a professional's thought leadership output, expertise areas, and publishing frequency.

Use cases

Assess candidate expertise through their published content
Map thought leaders in specific professional domains
Track competitor executives' public communications

Parameters

NameInTypeRequiredDescription
urlquerystringoptionalDefault: https://www.linkedin.com/in/williamhgates/
usernamequerystringoptionalDefault: williamhgates

Responses

200

{
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "properties": {
      "type": "object",
      "properties": {
        "success": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string"
            }
          }
        },
        "message": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string"
            }
          }
        },
        "data": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string"
            },
            "properties": {
              "type": "object",
              "properties": {
                "items": {
                  "type": "object",
                  "properties": {
                    "type": {
                      "type": "string"
                    },
                    "items": {
                      "type": "object",
                      "properties": {
                        "type": {
                          "type": "string"
                        },
                        "properties": {
                          "type": "object",
                          "properties": {
                            "urn": {
                              "type": "object",
                              "properties": {
                                "type": {
                                  "type": "string"
                                }
                              }
                            },
                            "url": {
                              "type": "object",
                              "properties": {
                                "type": {
                                  "type": "string"
                                }
                              }
                            },
                            "duration": {
                              "type": "object",
                              "properties": {
                                "type": {
                                  "type": "string"
                                }
                              }
                            },
                            "description": {
                              "type": "object",
                              "properties": {
                                "type": {
                                  "type": "string"
                                }
                              }
                            },
                            "title": {
                              "type": "object",
                              "properties": {
                                "type": {
                                  "type": "string"
                                }
                              }
                            },
                            "images": {
                              "type": "object",
                              "properties": {
                                "type": {
                                  "type": "string"
                                },
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "type": {
                                      "type": "string"
                                    },
                                    "properties": {
                                      "type": "object",
                                      "properties": {
                                        "url": {
                                          "type": "object",
                                          "properties": {
                                            "type": {
                                              "type": "string"
                                            }
                                          }
                                        },
                                        "width": {
                                          "type": "object",
                                          "properties": {
                                            "type": {
                                              "type": "string"
                                            }
                                          }
                                        },
                                        "height": {
                                          "type": "object",
                                          "properties": {
                                            "type": {
                                              "type": "string"
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            },
                            "totalSocialActivityCounts": {
                              "type": "object",
                              "properties": {
                                "type": {
                                  "type": "string"
                                },
                                "properties": {
                                  "type": "object",
                                  "properties": {
                                    "numComments": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "likeCount": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "appreciationCount": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "empathyCount": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "InterestCount": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "praiseCount": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "funnyCount": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "maybeCount": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "totalReactionCount": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "numShares": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "currentPage": {
                  "type": "object",
                  "properties": {
                    "type": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

Agent / Developer Schema

Machine-readable formats for integrating this endpoint into AI agents and toolchains.

{
  "operationId": "Get_User_Articles",
  "method": "get",
  "path": "/get-user-articles",
  "summary": "Get User Articles",
  "description": "Get user articles by profile with url or username",
  "parameters": [
    {
      "name": "url",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "default": "https://www.linkedin.com/in/williamhgates/"
      }
    },
    {
      "name": "username",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "default": "williamhgates"
      }
    }
  ],
  "responses": [
    {
      "statusCode": "200",
      "description": "200",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string"
              },
              "properties": {
                "type": "object",
                "properties": {
                  "success": {
                    "type": "object",
                    "properties": {
                      "type": {
                        "type": "string"
                      }
                    }
                  },
                  "message": {
                    "type": "object",
                    "properties": {
                      "type": {
                        "type": "string"
                      }
                    }
                  },
                  "data": {
                    "type": "object",
                    "properties": {
                      "type": {
                        "type": "string"
                      },
                      "properties": {
                        "type": "object",
                        "properties": {
                          "items": {
                            "type": "object",
                            "properties": {
                              "type": {
                                "type": "string"
                              },
                              "items": {
                                "type": "object",
                                "properties": {
                                  "type": {
                                    "type": "string"
                                  },
                                  "properties": {
                                    "type": "object",
                                    "properties": {
                                      "urn": {
                                        "type": "object",
                                        "properties": {
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "url": {
                                        "type": "object",
                                        "properties": {
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "duration": {
                                        "type": "object",
                                        "properties": {
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "description": {
                                        "type": "object",
                                        "properties": {
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "title": {
                                        "type": "object",
                                        "properties": {
                                          "type": {
                                            "type": "string"
                                          }
                                        }
                                      },
                                      "images": {
                                        "type": "object",
                                        "properties": {
                                          "type": {
                                            "type": "string"
                                          },
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "type": {
                                                "type": "string"
                                              },
                                              "properties": {
                                                "type": "object",
                                                "properties": {
                                                  "url": {
                                                    "type": "object",
                                                    "properties": {
                                                      "type": {
                                                        "type": "string"
                                                      }
                                                    }
                                                  },
                                                  "width": {
                                                    "type": "object",
                                                    "properties": {
                                                      "type": {
                                                        "type": "string"
                                                      }
                                                    }
                                                  },
                                                  "height": {
                                                    "type": "object",
                                                    "properties": {
                                                      "type": {
                                                        "type": "string"
                                                      }
                                                    }
                                                  }
                                                }
                                              }
                                            }
                                          }
                                        }
                                      },
                                      "totalSocialActivityCounts": {
                                        "type": "object",
                                        "properties": {
                                          "type": {
                                            "type": "string"
                                          },
                                          "properties": {
                                            "type": "object",
                                            "properties": {
                                              "numComments": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "likeCount": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "appreciationCount": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "empathyCount": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "InterestCount": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "praiseCount": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "funnyCount": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "maybeCount": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "totalReactionCount": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              },
                                              "numShares": {
                                                "type": "object",
                                                "properties": {
                                                  "type": {
                                                    "type": "string"
                                                  }
                                                }
                                              }
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "currentPage": {
                            "type": "object",
                            "properties": {
                              "type": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "example": {
            "type": "object",
            "properties": {
              "success": {
                "type": "boolean"
              },
              "message": {
                "type": "string"
              },
              "data": {
                "type": "object",
                "properties": {
                  "items": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "urn": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string"
                        },
                        "duration": {
                          "type": "string"
                        },
                        "description": {
                          "type": "string"
                        },
                        "title": {
                          "type": "string"
                        },
                        "images": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "url": {
                                "type": "string"
                              },
                              "width": {
                                "type": "integer"
                              },
                              "height": {
                                "type": "integer"
                              }
                            }
                          }
                        },
                        "totalSocialActivityCounts": {
                          "type": "object",
                          "properties": {
                            "numComments": {
                              "type": "integer"
                            },
                            "likeCount": {
                              "type": "integer"
                            },
                            "appreciationCount": {
                              "type": "integer"
                            },
                            "empathyCount": {
                              "type": "integer"
                            },
                            "InterestCount": {
                              "type": "integer"
                            },
                            "praiseCount": {
                              "type": "integer"
                            },
                            "funnyCount": {
                              "type": "integer"
                            },
                            "maybeCount": {
                              "type": "integer"
                            },
                            "totalReactionCount": {
                              "type": "integer"
                            },
                            "numShares": {
                              "type": "integer"
                            }
                          }
                        }
                      }
                    }
                  },
                  "currentPage": {
                    "type": "integer"
                  }
                }
              }
            }
          }
        }
      }
    }
  ]
}

Pricing

$0.01per successful request

Credits are deducted from your agntdata balance on each successful API call. Failed requests (4xx/5xx) are not charged.

Related endpoints

Start using this endpoint

Generate your API key and make your first call in under a minute. Free tier available with transparent pricing.

user articles APILinkedIn author contentthought leadership dataLinkedIn APILinkedIn data APILinkedIn scraper API