Skip to main content
GET
/
v1
/
linkedin
/
articles
/
{article_slug}
Get Article
curl --request GET \
  --url https://api.scrapebadger.com/v1/linkedin/articles/{article_slug} \
  --header 'X-API-Key: <x-api-key>'
import requests

url = "https://api.scrapebadger.com/v1/linkedin/articles/{article_slug}"

headers = {"X-API-Key": "<x-api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};

fetch('https://api.scrapebadger.com/v1/linkedin/articles/{article_slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scrapebadger.com/v1/linkedin/articles/{article_slug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.scrapebadger.com/v1/linkedin/articles/{article_slug}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-Key", "<x-api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.scrapebadger.com/v1/linkedin/articles/{article_slug}")
.header("X-API-Key", "<x-api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.scrapebadger.com/v1/linkedin/articles/{article_slug}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'

response = http.request(request)
puts response.read_body
{
  "post": {
    "post_id": "<string>",
    "url": "<string>",
    "type": "<string>",
    "author_name": "<string>",
    "author_url": "<string>",
    "title": "<string>",
    "text": "<string>",
    "published_at": "<string>",
    "like_count": 123,
    "comment_count": 123,
    "comments": [
      {}
    ]
  }
}
Fetch a public LinkedIn Pulse article by its article_slug (the /pulse/<slug> segment of the URL). Returns the same Post shape as /posts/{post_slug}, with type set to article and the article headline in title. Credits: 5

Authorization

X-API-Key
string
required
Your ScrapeBadger API key.

Path Parameters

article_slug
string
required
Pulse article slug, e.g. the-future-of-cloud-jane-smith.

Query Parameters

country
string
default:"us"
Country/locale for the request.

Response

post
object
The Post (same shape as /posts).

Example

curl "https://api.scrapebadger.com/v1/linkedin/articles/the-future-of-cloud-jane-smith" \
  -H "X-API-Key: YOUR_API_KEY"
const res = await fetch(
  "https://api.scrapebadger.com/v1/linkedin/articles/the-future-of-cloud-jane-smith",
  { headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const { post } = await res.json();
import requests

res = requests.get(
    "https://api.scrapebadger.com/v1/linkedin/articles/the-future-of-cloud-jane-smith",
    headers={"X-API-Key": "YOUR_API_KEY"},
)
post = res.json()["post"]
Response
{
  "post": {
    "post_id": "7209988776655443322",
    "url": "https://www.linkedin.com/pulse/the-future-of-cloud-jane-smith",
    "type": "article",
    "author_name": "Jane Smith",
    "author_url": "https://www.linkedin.com/in/jane-smith",
    "title": "The Future of Cloud Infrastructure",
    "text": "Over the last decade the cloud has moved from a cost-saving story to a platform for innovation…",
    "published_at": "2026-06-30T11:00:00Z",
    "like_count": 5400,
    "comment_count": 210,
    "comments": [
      {
        "author": "Alex Kim",
        "author_url": "https://www.linkedin.com/in/alex-kim",
        "text": "Great overview — thanks for writing this up.",
        "published_at": "2026-06-30T12:15:00Z",
        "like_count": 32
      }
    ]
  }
}