GET
/
api
/
v1
/
search
/
posts
Search Posts
curl --request GET \
  --url https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/search/posts \
  --header 'x-rapidapi-key: <api-key>'
{
  "success": true,
  "cost": 1,
  "total": 500,
  "has_more": true,
  "data": [
    {
      "id": "7312451872932401152",
      "url": "https://www.linkedin.com/feed/update/urn:li:activity:7312451872932401152",
      "title": "What started as a brand initiative turned...",
      "created_at": "16m",
      "author": {
        "id": "457051511",
        "name": "Raz Widrich",
        "description": "Brand at Euno ♡",
        "url": "https://www.linkedin.com/in/ACoAABs-DXcBA_sZPEUp5JPnJo45wS1nKggFgXg",
        "avatar": [
          {
            "width": 400,
            "height": 400,
            "url": "https://media.licdn.com/dms/image/v2/D4E0BAQHjelLY2a-Mnw/company-logo_400_400/company-logo_400_400/0/1666083635765?e=1748476800&v=beta&t=V_T_yXL6Bs2HDEY-iZAKSkNype7_-7USjP2HIXo0Zv8",
            "expires_at": 1748476800000
          }
        ]
      }
    }
  ]
}

Authorizations

x-rapidapi-key
string
header
required

Rapid API Key

Query Parameters

keyword
string
required
page
integer
default:1

Page number for pagination

Required range: x > 0
Example:

1

date_posted
enum<string>

Filter by date posted

Available options:
past_month,
past_week,
past_24h
Example:

"past_week"

sort_by
enum<string>

Sort posts by criteria

Available options:
date_posted,
relevance
Example:

"relevance"

content_type
enum<string>

Filter by type of content

Available options:
videos,
photos,
jobs,
live_videos,
documents,
collaborative_articles
Example:

"videos"

Response

Success

success
boolean
Example:

true

cost
number

Cost of the request

Example:

1

total
number

Total number of posts

Example:

500

has_more
boolean

Whether there are more posts to fetch

Example:

true

data
object[]

Search Posts