πŸ”—πŸ“… LinkedIn Post Creation Date avatar

πŸ”—πŸ“… LinkedIn Post Creation Date

Pricing

from $3.99 / 1,000 results

Go to Apify Store
πŸ”—πŸ“… LinkedIn Post Creation Date

πŸ”—πŸ“… LinkedIn Post Creation Date

Pricing

from $3.99 / 1,000 results

Rating

0.0

(0)

Developer

Scrapio

Scrapio

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

πŸ”— LinkedIn Post Creation Date Extractor

Instantly reveal the exact creation date and time of any public LinkedIn post β€” no login, no scraping headaches, no anti-bot rabbit holes. Just paste a URL, run, and get a precise UTC timestamp down to the millisecond.

⭐ Why Choose Us?

  • ⚑ Lightning fast β€” decoding is offline math; results in milliseconds per URL.
  • πŸ” Bulk friendly β€” paste hundreds of URLs at once.
  • πŸ›‘οΈ Smart proxy fallback β€” starts direct, escalates to datacenter, then residential only when LinkedIn pushes back.
  • πŸͺΆ Lightweight β€” no headless browser, no Playwright overhead.
  • 🧠 Robust β€” handles /posts/..., feed updates, and raw urn:li:activity:... formats.
  • πŸ’Ύ Live saving β€” every result is pushed to the dataset as soon as it's ready.

✨ Key Features

  • πŸ”— Accepts LinkedIn post URLs and activity URNs
  • πŸ“… Returns precise UTC creation_date, ISO date, and millisecond timestamp
  • 🌐 Optional URL reachability check
  • πŸ›‘οΈ Direct β†’ datacenter β†’ residential proxy escalation (sticky after fallback)
  • πŸ” Configurable retries with exponential backoff
  • πŸ“Š Rich dataset view with column labels and emoji headers
  • πŸͺ΅ Engaging real-time logs that show progress per URL

πŸ“₯ Input

{
"urls": [
{ "url": "https://www.linkedin.com/posts/fredericjousset_chaque-jour-avec-la-m%C3%AAme-r%C3%A9gularit%C3%A9-implacable-activity-7218859278495813634-nG42" }
],
"validateUrl": true,
"proxyConfiguration": { "useApifyProxy": false }
}
FieldTypeDescription
urlsarrayLinkedIn post URLs or activity URNs (bulk supported)
validateUrlbooleanWhether to also confirm the URL is reachable
proxyConfigurationobjectApify proxy settings; defaults to no proxy

πŸ“€ Output

{
"url": "https://www.linkedin.com/posts/fredericjousset_chaque-jour-avec-la-m%C3%AAme-r%C3%A9gularit%C3%A9-implacable-activity-7218859278495813634-nG42",
"activity_id": "7218859278495813634",
"creation_date": "2024-07-16 06:09:31.913000",
"creation_date_iso": "2024-07-16T06:09:31.913000+00:00",
"creation_timestamp_ms": 1721110171913,
"url_reachable": true,
"http_status": 200,
"proxy_used": "direct",
"success": true,
"error": null
}
FieldDescription
urlOriginal input URL
activity_idLinkedIn 19-digit activity ID
creation_dateHuman-readable UTC date YYYY-MM-DD HH:MM:SS.ffffff
creation_date_isoISO 8601 datetime
creation_timestamp_msUnix timestamp in milliseconds
url_reachabletrue/false/null (when validation disabled)
http_statusHTTP status of the validation request
proxy_useddirect, datacenter, or residential
successDid the timestamp decode succeed
errorError string if any

πŸš€ How to Use (Apify Console)

  1. Log in at console.apify.com β†’ Actors.
  2. Open LinkedIn Post Creation Date Extractor.
  3. Paste your LinkedIn URLs in the URLs field.
  4. (Optional) Toggle Validate URL off for offline-only decoding.
  5. Click Start.
  6. Watch the real-time logs.
  7. Open the Output tab when the run completes.
  8. Export results to JSON / CSV / XLSX.

πŸ€– Use via API

curl -X POST "https://api.apify.com/v2/acts/<ACTOR_ID>/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"urls": [
{"url": "https://www.linkedin.com/posts/fredericjousset_activity-7218859278495813634-nG42"}
],
"validateUrl": false
}'

πŸ›‘οΈ Proxy Strategy

The actor begins with no proxy to keep latency low. If LinkedIn returns a blocking status (403, 407, 429, 451, 503) or a network error occurs, it escalates:

  1. 🟒 Direct β€” first attempt
  2. 🟑 Datacenter (Apify proxy) β€” fast fallback
  3. πŸ”΄ Residential β€” last resort, retries up to 3 times with exponential backoff

Once the actor falls back, it stays on the higher tier (sticky) for the rest of the run β€” no flapping.

πŸ’‘ Best Use Cases

  • πŸ“° Newsroom verification β€” confirm post timing for citations
  • πŸ“Š Marketing analytics β€” line up campaign posts with engagement
  • πŸ” OSINT and research β€” establish when a public post first appeared
  • πŸ—‚οΈ Archival β€” keep a historical index of posts with exact timestamps

πŸ’Έ Pricing

This actor uses the pay-per-event model. You pay only for what you decode.

EventWhen charged
apify-actor-startOnce when a run begins (synthetic, configured in Console)
result-itemEach successfully resolved post (a creation_date was decoded)

Failed lookups (e.g. malformed URLs) are not billed.

❓ Frequently Asked Questions

Q: Do I need to log in to LinkedIn? A: No. The creation date is encoded inside the activity ID, which is public.

Q: Does it work with private posts? A: As long as the URL contains a numeric activity ID, yes β€” the timestamp is decoded mathematically, no fetch needed.

Q: Will I get rate-limited? A: With validation off, no requests are sent at all. With validation on, the actor escalates through proxy tiers automatically.

Q: What if a URL has no activity ID? A: It's pushed to the dataset with success: false and error: "no activity id found" so you can audit it.

πŸ“¬ Support and Feedback

Open an issue or contact the maintainer via the Apify Store listing. Feedback welcome πŸ’¬.

  • Only public, anonymously-accessible URLs are processed.
  • The end user is responsible for compliance with LinkedIn's Terms of Service, GDPR, CCPA, and other applicable laws.
  • The actor never logs in, never bypasses auth walls, never accesses private content.