@scrapecreators/cli 1.0.1 → 1.0.3

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.
@@ -29065,17 +29065,17 @@ export const apis = [
29065
29065
  {
29066
29066
  name: "Track",
29067
29067
  method: "GET",
29068
- description: "Gets detailed information about a SoundCloud track/song by ID.",
29068
+ description: "Gets detailed information about a SoundCloud track/song by URL.",
29069
29069
  fullDescription:
29070
- "Fetches detailed information about a SoundCloud track/song by ID. Returns track title, plays, likes, reposts, comments, artwork, artist, and other SoundCloud metadata.",
29070
+ "Fetches detailed information about a SoundCloud track/song by URL. Returns track title, plays, likes, reposts, comments, artwork, artist, and other SoundCloud metadata.",
29071
29071
  path: "/v1/soundcloud/track",
29072
29072
  params: [
29073
29073
  {
29074
- name: "id",
29075
- type: "number",
29074
+ name: "url",
29075
+ type: "string",
29076
29076
  required: true,
29077
- description: "SoundCloud track ID.",
29078
- placeholder: 2306956232,
29077
+ description: "SoundCloud track URL.",
29078
+ placeholder: "https://soundcloud.com/kehlanimusic/lights-on-feat-big-sean",
29079
29079
  },
29080
29080
  ],
29081
29081
  sampleResponse: {
@@ -3754,8 +3754,8 @@ export const tiktokBaseApis = {
3754
3754
  {
3755
3755
  name: "Video Info",
3756
3756
  method: "GET",
3757
- description: "Scrapes data from a TikTok video",
3758
- fullDescription: "Fetches detailed data for a single TikTok video by URL, including its metadata, engagement stats, and optionally its transcript/captions. Returns `aweme_detail` with `desc` (caption), `statistics` (play_count, digg_count/likes, comment_count, share_count, collect_count), `video` (download URLs including no-watermark), `author` info, and `music` info; also returns `transcript` in WEBVTT format if `get_transcript=true`.",
3757
+ description: "Scrapes data from a TikTok video. For no-watermark video URLs, use `download_no_watermark_addr` when present, or `play_addr` when `has_watermark` is false.",
3758
+ fullDescription: "Fetches detailed data for a single TikTok video by URL, including its metadata, engagement stats, and optionally its transcript/captions. Returns `aweme_detail` with `desc` (caption), `statistics` (play_count, digg_count/likes, comment_count, share_count, collect_count), `video` URLs, `author` info, and `music` info; also returns `transcript` in WEBVTT format if `get_transcript=true`. For no-watermark video URLs, use `aweme_detail.video.download_no_watermark_addr.url_list[0]` when it exists. If it is missing and `aweme_detail.video.has_watermark` is false, use `aweme_detail.video.play_addr.url_list[0]` instead. If `has_watermark` is true and `download_no_watermark_addr` is missing, TikTok did not return a no-watermark URL for that video.",
3759
3759
  path: "/v2/tiktok/video",
3760
3760
  params: [
3761
3761
  {
@@ -3805,7 +3805,8 @@ export const tiktokBaseApis = {
3805
3805
  },
3806
3806
  {
3807
3807
  path: "aweme_detail.video.download_no_watermark_addr.url_list[0]",
3808
- description: "The URL of the video",
3808
+ description:
3809
+ "No-watermark video URL when TikTok returns one. If this field is missing and `aweme_detail.video.has_watermark` is false, use `aweme_detail.video.play_addr.url_list[0]` instead.",
3809
3810
  },
3810
3811
  {
3811
3812
  path: "digg_count",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrapecreators/cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "CLI for the ScrapeCreators API — scrape 27+ social media platforms from the terminal",
5
5
  "type": "module",
6
6
  "bin": {