@scrapecreators/cli 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/api-config/apis.js +26 -0
  2. package/package.json +1 -1
@@ -2624,6 +2624,32 @@ export const apis = [
2624
2624
  ],
2625
2625
  },
2626
2626
  },
2627
+ {
2628
+ name: "Post Transcript",
2629
+ method: "GET",
2630
+ description: "Get the transcript from a LinkedIn post video when LinkedIn exposes one.",
2631
+ fullDescription:
2632
+ "Fetches the transcript from a LinkedIn post video when LinkedIn exposes one publicly. Returns null with transcriptNotAvailable when the post has no transcript, and only deducts credits when a transcript is returned.",
2633
+ path: "/v1/linkedin/post/transcript",
2634
+ params: [
2635
+ {
2636
+ name: "url",
2637
+ type: "string",
2638
+ description: "The URL of the LinkedIn post to get the transcript from",
2639
+ required: true,
2640
+ placeholder:
2641
+ "https://www.linkedin.com/posts/gemini-35-flash-is-a-step-forward-for-google-ugcPost-7465082215316525056-MHBd/",
2642
+ },
2643
+ ],
2644
+ sampleResponse: {
2645
+ success: true,
2646
+ credits_remaining: 100,
2647
+ url: "https://www.linkedin.com/posts/artificial-analysis_gemini-35-flash-is-a-step-forward-for-google-activity-7465082408409870337-4Pm-",
2648
+ transcript:
2649
+ "Hey, my name is Declan Jackson. I am a member of technical staff here at Artificial Analysis and I'm going to do a quick chat through the recent release of Gemini 3.5 Flash...",
2650
+ transcriptNotAvailable: false,
2651
+ },
2652
+ },
2627
2653
  ],
2628
2654
  },
2629
2655
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrapecreators/cli",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "CLI for the ScrapeCreators API — scrape 27+ social media platforms from the terminal",
5
5
  "type": "module",
6
6
  "bin": {