@getanyapi/sdk 0.34.1 → 0.34.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.
package/dist/index.cjs CHANGED
@@ -6672,7 +6672,7 @@ var TwitterNamespace = class {
6672
6672
  *
6673
6673
  * List recent tweets posted in a Twitter/X community by URL.
6674
6674
  *
6675
- * Price: $0.002 per request.
6675
+ * Price: $0.0005 per request.
6676
6676
  *
6677
6677
  * @example
6678
6678
  * const res = await client.twitter.communityTweets({ url: "https://x.com/i/communities/1926186499399139650" });
@@ -6743,7 +6743,7 @@ var TwitterNamespace = class {
6743
6743
  *
6744
6744
  * Fetch a Twitter/X account's public profile (followers, tweets, bio, verification) by handle.
6745
6745
  *
6746
- * Price: $0.00018 per request.
6746
+ * Price: $0.0003 per request.
6747
6747
  *
6748
6748
  * @example
6749
6749
  * const res = await client.twitter.profile({ handle: "nasa" });
@@ -6756,7 +6756,7 @@ var TwitterNamespace = class {
6756
6756
  *
6757
6757
  * Fetch the replies to any X (Twitter) post URL as structured records: author, text, and engagement. An empty result is valid and does not assert whether the target post exists.
6758
6758
  *
6759
- * Price: $0.00075 per request.
6759
+ * Price: $0.0005 per request.
6760
6760
  *
6761
6761
  * @example
6762
6762
  * const res = await client.twitter.replies({ url: "https://x.com/jack/status/20" });
@@ -6769,7 +6769,7 @@ var TwitterNamespace = class {
6769
6769
  *
6770
6770
  * Search X (Twitter) with full advanced-search syntax (operators like from:, since:, until:, min_faves: work inline in the query) and get structured tweets with text, author, engagement, and cursor pagination. Limit is a per-page maximum; native pages contain approximately 20 tweets unless requireSinglePage selects a bulk lane.
6771
6771
  *
6772
- * Price: $0.00075 per request.
6772
+ * Price: $0.00065 per request.
6773
6773
  *
6774
6774
  * @example
6775
6775
  * const res = await client.twitter.search({ query: "openai" });
@@ -6882,7 +6882,7 @@ var TwitterNamespace = class {
6882
6882
  *
6883
6883
  * Fetch a single Twitter/X tweet by URL with its full text and engagement counts (likes, retweets, replies, quotes, bookmarks, views).
6884
6884
  *
6885
- * Price: $0.00018 per request.
6885
+ * Price: $0.0003 per request.
6886
6886
  *
6887
6887
  * @example
6888
6888
  * const res = await client.twitter.tweet({ url: "https://x.com/SpaceX/status/1732824684683784516" });
@@ -6908,7 +6908,7 @@ var TwitterNamespace = class {
6908
6908
  *
6909
6909
  * Get an X (Twitter) account's profile Posts-tab timeline by handle. Results follow profile order: a pinned post may appear first, followed by otherwise reverse-chronological authored posts, reposts, quotes, and self-thread continuations.
6910
6910
  *
6911
- * Price: $0.00075 per request.
6911
+ * Price: $0.0005 per request.
6912
6912
  *
6913
6913
  * @example
6914
6914
  * const res = await client.twitter.userPosts({ handle: "levelsio" });
@@ -6937,7 +6937,7 @@ var TwitterNamespace = class {
6937
6937
  *
6938
6938
  * Get up to the requested limit of tweets and replies authored by an X (Twitter) account, with engagement, views, language, and cursor pagination where available.
6939
6939
  *
6940
- * Price: $0.00075 per request.
6940
+ * Price: $0.0005 per request.
6941
6941
  *
6942
6942
  * @example
6943
6943
  * const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });
@@ -7446,7 +7446,7 @@ var YoutubeNamespace = class {
7446
7446
  *
7447
7447
  * Search YouTube and get matching videos (title, channel, views, length, publish time) as normalized JSON.
7448
7448
  *
7449
- * Price: $0.0009 per request.
7449
+ * Price: $0.0008 per request.
7450
7450
  *
7451
7451
  * @example
7452
7452
  * const res = await client.youtube.search({ query: "how to cook rice" });
@@ -7517,7 +7517,7 @@ var YoutubeNamespace = class {
7517
7517
  *
7518
7518
  * Fetch a YouTube video's metadata (title, channel, views, likes, duration, publish date) by URL or ID.
7519
7519
  *
7520
- * Price: $0.002 per request.
7520
+ * Price: $0.00125 per request.
7521
7521
  *
7522
7522
  * @example
7523
7523
  * const res = await client.youtube.video({ url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ" });
@@ -7572,7 +7572,7 @@ var YoutubeNamespace = class {
7572
7572
  *
7573
7573
  * Fetch the transcript/captions of a YouTube video by URL or ID.
7574
7574
  *
7575
- * Price: $0.011 per request.
7575
+ * Price: $0.00125 per request.
7576
7576
  *
7577
7577
  * @example
7578
7578
  * const res = await client.youtube.videoTranscript({ url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ" });