@getanyapi/sdk 0.15.2 → 0.16.1

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
@@ -1089,7 +1089,7 @@ var AmazonNamespace = class {
1089
1089
  *
1090
1090
  * List the top-ranked products of any Amazon Best Sellers category (rank, title, price, and rating) in one normalized request.
1091
1091
  *
1092
- * Price: $0 per request plus $0.00431 per result (maximum $0.0861).
1092
+ * Price: $0.0009 per request.
1093
1093
  *
1094
1094
  * @example
1095
1095
  * const res = await client.amazon.bestsellers({ url: "https://www.amazon.com/gp/bestsellers/electronics", limit: 3 });
@@ -1115,7 +1115,7 @@ var AmazonNamespace = class {
1115
1115
  *
1116
1116
  * Pull up to 50 customer reviews for any Amazon product by ASIN or URL: rating, title, text, date, and verified-purchase badge.
1117
1117
  *
1118
- * Price: $0.018 per request.
1118
+ * Price: $0.0018 per request.
1119
1119
  *
1120
1120
  * @example
1121
1121
  * const res = await client.amazon.reviews({ product: "B07PXGQC1Q", limit: 3 });
@@ -1128,7 +1128,7 @@ var AmazonNamespace = class {
1128
1128
  *
1129
1129
  * Search Amazon from any search or category URL and get up to 20 matching products (title, price, rating, and thumbnail) in one normalized response.
1130
1130
  *
1131
- * Price: $0 per request plus $0.00368 per result (maximum $0.0735).
1131
+ * Price: $0.0009 per request.
1132
1132
  *
1133
1133
  * @example
1134
1134
  * const res = await client.amazon.search({ url: "https://www.amazon.com/s?k=laptop", limit: 3 });
@@ -3289,6 +3289,32 @@ var LinkedinNamespace = class {
3289
3289
  profile(input, options) {
3290
3290
  return this._core.run("linkedin.profile", input, options);
3291
3291
  }
3292
+ /**
3293
+ * LinkedIn Profile Posts (full)
3294
+ *
3295
+ * Fetch recent public LinkedIn profile posts with enriched author, engagement, article, newsletter, media, annotation, repost, and social activity details.
3296
+ *
3297
+ * Price: $0.00006 per request plus $0.00184 per result (maximum $0.184).
3298
+ *
3299
+ * @example
3300
+ * const res = await client.linkedin.profilePostsFull({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
3301
+ */
3302
+ profilePostsFull(input, options) {
3303
+ return this._core.run("linkedin.profile_posts_full", input, options);
3304
+ }
3305
+ /**
3306
+ * LinkedIn Profile Posts (basic)
3307
+ *
3308
+ * Fetch recent public LinkedIn profile posts with portable identity, author, engagement, article, image, video, and repost fields.
3309
+ *
3310
+ * Price: $0 per request plus $0.00137 per result (maximum $0.137).
3311
+ *
3312
+ * @example
3313
+ * const res = await client.linkedin.profilePostsThin({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
3314
+ */
3315
+ profilePostsThin(input, options) {
3316
+ return this._core.run("linkedin.profile_posts_thin", input, options);
3317
+ }
3292
3318
  /**
3293
3319
  * LinkedIn Profile (basic)
3294
3320
  *
@@ -5109,7 +5135,7 @@ var TwitterNamespace = class {
5109
5135
  *
5110
5136
  * Fetch a Twitter/X community's public details (name, description, member count, join policy) by URL.
5111
5137
  *
5112
- * Price: $0.002 per request.
5138
+ * Price: $0.00018 per request.
5113
5139
  *
5114
5140
  * @example
5115
5141
  * const res = await client.twitter.community({ url: "https://x.com/i/communities/1926186499399139650" });
@@ -5193,7 +5219,7 @@ var TwitterNamespace = class {
5193
5219
  *
5194
5220
  * Fetch a Twitter/X account's public profile (followers, tweets, bio, verification) by handle.
5195
5221
  *
5196
- * Price: $0.00075 per request.
5222
+ * Price: $0.00018 per request.
5197
5223
  *
5198
5224
  * @example
5199
5225
  * const res = await client.twitter.profile({ handle: "nasa" });
@@ -5206,7 +5232,7 @@ var TwitterNamespace = class {
5206
5232
  *
5207
5233
  * Fetch the replies to any X (Twitter) post URL as structured records: author, text, and engagement.
5208
5234
  *
5209
- * Price: $0.00263 per request plus $0.00027 per result (maximum $0.0132).
5235
+ * Price: $0.00018 per request plus $0.00018 per result (maximum $0.00666).
5210
5236
  *
5211
5237
  * @example
5212
5238
  * const res = await client.twitter.replies({ url: "https://x.com/jack/status/20", limit: 3 });
@@ -5248,7 +5274,7 @@ var TwitterNamespace = class {
5248
5274
  *
5249
5275
  * Get current X (Twitter) trends for worldwide, a country, or a city in X ranking order, including the resolved location.
5250
5276
  *
5251
- * Price: $0.00075 per request.
5277
+ * Price: $0.00018 per request.
5252
5278
  *
5253
5279
  * @example
5254
5280
  * const res = await client.twitter.trends({ limit: 10, location: "US" });
@@ -5261,7 +5287,7 @@ var TwitterNamespace = class {
5261
5287
  *
5262
5288
  * Fetch a single Twitter/X tweet by URL with its full text and engagement counts (likes, retweets, replies, quotes, bookmarks, views).
5263
5289
  *
5264
- * Price: $0.00075 per request.
5290
+ * Price: $0.00018 per request.
5265
5291
  *
5266
5292
  * @example
5267
5293
  * const res = await client.twitter.tweet({ url: "https://x.com/SpaceX/status/1732824684683784516" });
@@ -5314,9 +5340,9 @@ var TwitterNamespace = class {
5314
5340
  /**
5315
5341
  * X / Twitter User Tweets and Replies
5316
5342
  *
5317
- * Get up to the requested limit of tweets and replies authored by an X (Twitter) account in one bulk call, with engagement, views, and language. The current lane returns nextCursor as null; cursor is reserved for future cursor-capable lanes.
5343
+ * 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.
5318
5344
  *
5319
- * Price: $0 per request plus $0.00021 per result (maximum $0.21).
5345
+ * Price: $0.00018 per request plus $0.00018 per result (maximum $0.01818).
5320
5346
  *
5321
5347
  * @example
5322
5348
  * const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });
@@ -6029,7 +6055,7 @@ var ZillowNamespace = class {
6029
6055
  *
6030
6056
  * Search Zillow for-sale, rental, or sold listings by region-level location (city, ZIP, county, or neighborhood) with optional price, bedroom, living-area, home-type, recency, and sort filters and get matching properties (price, address, beds, baths, living area, status, Zestimate) as normalized JSON.
6031
6057
  *
6032
- * Price: $0.00053 per request plus $0.00315 per result (maximum $0.0793).
6058
+ * Price: $0.0009 per request.
6033
6059
  *
6034
6060
  * @example
6035
6061
  * const res = await client.zillow.search({ location: "Austin, TX", limit: 3, maxPrice: 900000, minBedrooms: 3, operation: "buy" });