@getanyapi/sdk 0.1.0 → 0.7.0

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
@@ -26,6 +26,7 @@ __export(index_exports, {
26
26
  AmazonNamespace: () => AmazonNamespace,
27
27
  AnyAPI: () => AnyAPI2,
28
28
  AnyAPIError: () => AnyAPIError,
29
+ ApolloNamespace: () => ApolloNamespace,
29
30
  AppstoreNamespace: () => AppstoreNamespace,
30
31
  AuthenticationError: () => AuthenticationError,
31
32
  BadRequestError: () => BadRequestError,
@@ -35,6 +36,7 @@ __export(index_exports, {
35
36
  CongressNamespace: () => CongressNamespace,
36
37
  ConnectionError: () => ConnectionError,
37
38
  DexscreenerNamespace: () => DexscreenerNamespace,
39
+ DouyinNamespace: () => DouyinNamespace,
38
40
  EbayNamespace: () => EbayNamespace,
39
41
  EmailNamespace: () => EmailNamespace,
40
42
  FacebookNamespace: () => FacebookNamespace,
@@ -65,6 +67,7 @@ __export(index_exports, {
65
67
  ResultNotFoundError: () => ResultNotFoundError,
66
68
  SecNamespace: () => SecNamespace,
67
69
  SemrushNamespace: () => SemrushNamespace,
70
+ SeoNamespace: () => SeoNamespace,
68
71
  SnapchatNamespace: () => SnapchatNamespace,
69
72
  SocialNamespace: () => SocialNamespace,
70
73
  SpotifyNamespace: () => SpotifyNamespace,
@@ -81,10 +84,12 @@ __export(index_exports, {
81
84
  UpworkNamespace: () => UpworkNamespace,
82
85
  WalmartNamespace: () => WalmartNamespace,
83
86
  WebNamespace: () => WebNamespace,
87
+ WeiboNamespace: () => WeiboNamespace,
84
88
  WhatsappNamespace: () => WhatsappNamespace,
85
89
  YahooFinanceNamespace: () => YahooFinanceNamespace,
86
90
  YelpNamespace: () => YelpNamespace,
87
91
  YoutubeNamespace: () => YoutubeNamespace,
92
+ ZhihuNamespace: () => ZhihuNamespace,
88
93
  ZillowNamespace: () => ZillowNamespace,
89
94
  agentSignup: () => agentSignup,
90
95
  paginate: () => paginate,
@@ -146,14 +151,130 @@ function errorFromStatus(status, message, requestId) {
146
151
  }
147
152
 
148
153
  // src/core/account.ts
149
- var CREDITS_TO_USD = 1e-5;
150
154
  var DEFAULT_BASE_URL = "https://api.getanyapi.com";
151
- function splitSlug(slug) {
152
- const dot = slug.indexOf(".");
153
- if (dot < 0) {
154
- return { platform: slug, action: "" };
155
+ function malformed(path) {
156
+ throw new AnyAPIError(`malformed discovery response: ${path}`, 0);
157
+ }
158
+ function rejectInternalKeys(value, path) {
159
+ if (Array.isArray(value)) {
160
+ value.forEach(
161
+ (item, index) => rejectInternalKeys(item, `${path}[${index}]`)
162
+ );
163
+ return;
164
+ }
165
+ if (typeof value !== "object" || value === null) return;
166
+ for (const [key, item] of Object.entries(value)) {
167
+ if (key.toLowerCase().includes("credit")) malformed(`${path}.${key}`);
168
+ rejectInternalKeys(item, `${path}.${key}`);
169
+ }
170
+ }
171
+ function record(value, path) {
172
+ if (typeof value !== "object" || value === null || Array.isArray(value)) {
173
+ return malformed(path);
174
+ }
175
+ return value;
176
+ }
177
+ function exactKeys(raw, allowed, path) {
178
+ const keys = new Set(allowed);
179
+ for (const key of Object.keys(raw)) {
180
+ if (!keys.has(key)) malformed(`${path}.${key}`);
181
+ }
182
+ }
183
+ function stringField(raw, key, path) {
184
+ const value = raw[key];
185
+ if (typeof value !== "string") return malformed(`${path}.${key}`);
186
+ return value;
187
+ }
188
+ function numberField(raw, key, path) {
189
+ const value = raw[key];
190
+ if (typeof value !== "number" || !Number.isFinite(value) || value < 0) {
191
+ return malformed(`${path}.${key}`);
192
+ }
193
+ return value;
194
+ }
195
+ function integerField(raw, key, path) {
196
+ const value = numberField(raw, key, path);
197
+ if (!Number.isInteger(value)) return malformed(`${path}.${key}`);
198
+ return value;
199
+ }
200
+ function boundedNumberField(raw, key, path, minimumExclusive, maximumInclusive) {
201
+ const value = numberField(raw, key, path);
202
+ if (minimumExclusive !== void 0 && value <= minimumExclusive || value > maximumInclusive) {
203
+ return malformed(`${path}.${key}`);
204
+ }
205
+ return value;
206
+ }
207
+ function parseOffer(value, path) {
208
+ const raw = record(value, path);
209
+ const model = stringField(raw, "model", path);
210
+ const unit = stringField(raw, "unit", path);
211
+ const maxUsd = numberField(raw, "maxUsd", path);
212
+ if (model === "flat") {
213
+ exactKeys(raw, ["model", "unit", "maxUsd"], path);
214
+ if (unit !== "request" || "baseUsd" in raw || "perUnitUsd" in raw) {
215
+ return malformed(path);
216
+ }
217
+ return { model, unit, maxUsd };
218
+ }
219
+ if (model === "linear") {
220
+ exactKeys(raw, ["model", "unit", "baseUsd", "perUnitUsd", "maxUsd"], path);
221
+ if (unit.length === 0) return malformed(`${path}.unit`);
222
+ return {
223
+ model,
224
+ unit,
225
+ baseUsd: numberField(raw, "baseUsd", path),
226
+ perUnitUsd: numberField(raw, "perUnitUsd", path),
227
+ maxUsd
228
+ };
229
+ }
230
+ return malformed(`${path}.model`);
231
+ }
232
+ function parsePricing(value, path) {
233
+ const raw = record(value, path);
234
+ exactKeys(raw, ["from", "failoverMaxUsd"], path);
235
+ return {
236
+ from: parseOffer(raw["from"], `${path}.from`),
237
+ failoverMaxUsd: numberField(raw, "failoverMaxUsd", path)
238
+ };
239
+ }
240
+ function parseHealth(value, path) {
241
+ const raw = record(value, path);
242
+ exactKeys(raw, ["window", "uptimePct", "latencyP50Ms", "requests"], path);
243
+ if (raw["window"] !== "30d") return malformed(`${path}.window`);
244
+ return {
245
+ window: "30d",
246
+ uptimePct: boundedNumberField(raw, "uptimePct", path, void 0, 100),
247
+ latencyP50Ms: integerField(raw, "latencyP50Ms", path),
248
+ requests: integerField(raw, "requests", path)
249
+ };
250
+ }
251
+ function parseLane(value, path) {
252
+ const raw = record(value, path);
253
+ exactKeys(raw, ["pricing", "health"], path);
254
+ const lane = {
255
+ pricing: parseOffer(raw["pricing"], `${path}.pricing`)
256
+ };
257
+ if (raw["health"] !== void 0) {
258
+ lane.health = parseHealth(raw["health"], `${path}.health`);
155
259
  }
156
- return { platform: slug.slice(0, dot), action: slug.slice(dot + 1) };
260
+ return lane;
261
+ }
262
+ function parseProvider(raw, path) {
263
+ if (raw["provider"] !== "AnyAPI") return malformed(`${path}.provider`);
264
+ return "AnyAPI";
265
+ }
266
+ function parseSchema(value, path) {
267
+ return record(value, path);
268
+ }
269
+ function parseHighlight(value, path) {
270
+ const raw = record(value, path);
271
+ exactKeys(raw, ["path", "type", "why"], path);
272
+ const field = {
273
+ path: stringField(raw, "path", path),
274
+ type: stringField(raw, "type", path)
275
+ };
276
+ if (raw["why"] !== void 0) field.why = stringField(raw, "why", path);
277
+ return field;
157
278
  }
158
279
  function mapProfile(raw) {
159
280
  const profile = {
@@ -168,19 +289,138 @@ function mapProfile(raw) {
168
289
  return profile;
169
290
  }
170
291
  function mapCatalogEntry(raw) {
171
- const derived = splitSlug(raw.slug);
172
- return {
173
- slug: raw.slug,
174
- platform: raw.platform ?? derived.platform,
175
- action: raw.action ?? derived.action,
176
- name: raw.name ?? "",
177
- category: raw.category ?? "",
178
- description: raw.description ?? "",
179
- priceUsd: (raw.fromCredits ?? 0) * CREDITS_TO_USD
292
+ rejectInternalKeys(raw, "api");
293
+ const value = record(raw, "api");
294
+ exactKeys(
295
+ value,
296
+ [
297
+ "id",
298
+ "slug",
299
+ "category",
300
+ "name",
301
+ "description",
302
+ "provider",
303
+ "pricing",
304
+ "lanes",
305
+ "heavy",
306
+ "tryEligible",
307
+ "inputSchema",
308
+ "outputSchema"
309
+ ],
310
+ "api"
311
+ );
312
+ const lanesRaw = value["lanes"];
313
+ if (!Array.isArray(lanesRaw) || lanesRaw.length === 0) {
314
+ return malformed("api.lanes");
315
+ }
316
+ const entry = {
317
+ id: stringField(value, "id", "api"),
318
+ slug: stringField(value, "slug", "api"),
319
+ category: stringField(value, "category", "api"),
320
+ name: stringField(value, "name", "api"),
321
+ description: stringField(value, "description", "api"),
322
+ provider: parseProvider(value, "api"),
323
+ pricing: parsePricing(value["pricing"], "api.pricing"),
324
+ lanes: lanesRaw.map(
325
+ (lane, index) => parseLane(lane, `api.lanes[${index}]`)
326
+ ),
327
+ heavy: value["heavy"] === void 0 ? false : value["heavy"] === true,
328
+ tryEligible: value["tryEligible"] === true
180
329
  };
330
+ if (value["heavy"] !== void 0 && typeof value["heavy"] !== "boolean") {
331
+ return malformed("api.heavy");
332
+ }
333
+ if (typeof value["tryEligible"] !== "boolean")
334
+ return malformed("api.tryEligible");
335
+ if (value["inputSchema"] !== void 0) {
336
+ entry.inputSchema = parseSchema(value["inputSchema"], "api.inputSchema");
337
+ }
338
+ if (value["outputSchema"] !== void 0) {
339
+ entry.outputSchema = parseSchema(value["outputSchema"], "api.outputSchema");
340
+ }
341
+ if (!offersEqual(entry.pricing.from, entry.lanes[0].pricing)) {
342
+ return malformed("api.pricing.from");
343
+ }
344
+ const failoverMaxUsd = Math.max(
345
+ ...entry.lanes.map((lane) => lane.pricing.maxUsd)
346
+ );
347
+ if (entry.pricing.failoverMaxUsd !== failoverMaxUsd) {
348
+ return malformed("api.pricing.failoverMaxUsd");
349
+ }
350
+ return entry;
351
+ }
352
+ function offersEqual(left, right) {
353
+ if (left.model !== right.model || left.unit !== right.unit || left.maxUsd !== right.maxUsd) {
354
+ return false;
355
+ }
356
+ if (left.model === "flat" || right.model === "flat") {
357
+ return left.model === right.model;
358
+ }
359
+ return left.baseUsd === right.baseUsd && left.perUnitUsd === right.perUnitUsd;
360
+ }
361
+ function mapCatalogDetail(raw) {
362
+ const entry = mapCatalogEntry(raw);
363
+ if (entry.inputSchema === void 0) return malformed("api.inputSchema");
364
+ if (entry.outputSchema === void 0) return malformed("api.outputSchema");
365
+ return entry;
181
366
  }
182
367
  function mapCatalogList(raw) {
183
- return (raw.apis ?? []).map(mapCatalogEntry);
368
+ const envelope = record(raw, "catalog");
369
+ exactKeys(envelope, ["apis"], "catalog");
370
+ if (!Array.isArray(envelope["apis"])) return malformed("catalog.apis");
371
+ return envelope["apis"].map(mapCatalogEntry);
372
+ }
373
+ function mapSearchResult(value, path) {
374
+ const raw = record(value, path);
375
+ exactKeys(
376
+ raw,
377
+ [
378
+ "slug",
379
+ "platformId",
380
+ "name",
381
+ "description",
382
+ "category",
383
+ "provider",
384
+ "pricing",
385
+ "relevance",
386
+ "highlightFields"
387
+ ],
388
+ path
389
+ );
390
+ const result = {
391
+ slug: stringField(raw, "slug", path),
392
+ platformId: stringField(raw, "platformId", path),
393
+ name: stringField(raw, "name", path),
394
+ description: stringField(raw, "description", path),
395
+ category: stringField(raw, "category", path),
396
+ provider: parseProvider(raw, path),
397
+ pricing: parsePricing(raw["pricing"], `${path}.pricing`),
398
+ relevance: boundedNumberField(raw, "relevance", path, 0, 1)
399
+ };
400
+ if (raw["highlightFields"] !== void 0) {
401
+ if (!Array.isArray(raw["highlightFields"]))
402
+ return malformed(`${path}.highlightFields`);
403
+ result.highlightFields = raw["highlightFields"].map(
404
+ (field, index) => parseHighlight(field, `${path}.highlightFields[${index}]`)
405
+ );
406
+ }
407
+ return result;
408
+ }
409
+ function mapCatalogSearch(raw) {
410
+ rejectInternalKeys(raw, "search");
411
+ const envelope = record(raw, "search");
412
+ exactKeys(envelope, ["results", "total", "ranking"], "search");
413
+ if (!Array.isArray(envelope["results"])) return malformed("search.results");
414
+ const ranking = envelope["ranking"];
415
+ if (ranking !== "semantic" && ranking !== "keyword")
416
+ return malformed("search.ranking");
417
+ return {
418
+ results: envelope["results"].map(
419
+ (row, index) => mapSearchResult(row, `search.results[${index}]`)
420
+ ),
421
+ total: integerField(envelope, "total", "search"),
422
+ ranking
423
+ };
184
424
  }
185
425
  async function agentSignup(options = {}) {
186
426
  const fetchImpl = options.fetch ?? globalThis.fetch;
@@ -307,12 +547,16 @@ function composeSignal(timeoutMs, callerSignal) {
307
547
  if (callerSignal.aborted) {
308
548
  controller.abort(callerSignal.reason);
309
549
  } else {
310
- callerSignal.addEventListener("abort", () => abort(callerSignal.reason), { once: true });
550
+ callerSignal.addEventListener("abort", () => abort(callerSignal.reason), {
551
+ once: true
552
+ });
311
553
  }
312
554
  if (timeoutSignal.aborted) {
313
555
  controller.abort(timeoutSignal.reason);
314
556
  } else {
315
- timeoutSignal.addEventListener("abort", () => abort(timeoutSignal.reason), { once: true });
557
+ timeoutSignal.addEventListener("abort", () => abort(timeoutSignal.reason), {
558
+ once: true
559
+ });
316
560
  }
317
561
  return { signal: controller.signal, timeoutSignal };
318
562
  }
@@ -363,10 +607,7 @@ var AnyAPI = class {
363
607
  constructor(options = {}) {
364
608
  this.apiKey = options.apiKey ?? envApiKey();
365
609
  if (!this.apiKey) {
366
- throw new AnyAPIError(
367
- "no API key: pass apiKey or set ANYAPI_API_KEY",
368
- 0
369
- );
610
+ throw new AnyAPIError("no API key: pass apiKey or set ANYAPI_API_KEY", 0);
370
611
  }
371
612
  this.baseUrl = options.baseUrl ?? DEFAULT_BASE_URL2;
372
613
  const resolvedFetch = options.fetch ?? globalThis.fetch;
@@ -386,12 +627,16 @@ var AnyAPI = class {
386
627
  * base signature is the fallback that returns RunResult<unknown> for an unknown slug.
387
628
  */
388
629
  run(slug, input, options) {
389
- return this.request("POST", buildUrl(this.baseUrl, slug, options), {
390
- body: JSON.stringify(input ?? {}),
391
- timeoutMs: options?.timeoutMs ?? this.timeoutMs,
392
- maxRetries: options?.maxRetries ?? this.maxRetries,
393
- ...options?.signal ? { signal: options.signal } : {}
394
- });
630
+ return this.request(
631
+ "POST",
632
+ buildUrl(this.baseUrl, slug, options),
633
+ {
634
+ body: JSON.stringify(input ?? {}),
635
+ timeoutMs: options?.timeoutMs ?? this.timeoutMs,
636
+ maxRetries: options?.maxRetries ?? this.maxRetries,
637
+ ...options?.signal ? { signal: options.signal } : {}
638
+ }
639
+ );
395
640
  }
396
641
  /** Current wallet balance in USD. GET /v1/balance. See SPEC 2.7. */
397
642
  balance() {
@@ -402,14 +647,11 @@ var AnyAPI = class {
402
647
  const raw = await this.httpGet("/v1/me");
403
648
  return mapProfile(raw);
404
649
  }
405
- /** List catalog SKUs, optionally filtered. GET /v1/apis. See SPEC 2.7. */
406
- async catalog(query) {
650
+ /** Browse catalog SKUs, optionally scoped by category. GET /v1/apis. */
651
+ async catalog(options = {}) {
407
652
  const search = new URLSearchParams();
408
- if (query?.query) {
409
- search.set("query", query.query);
410
- }
411
- if (query?.category) {
412
- search.set("category", query.category);
653
+ if (options.category) {
654
+ search.set("category", options.category);
413
655
  }
414
656
  const qs = search.toString();
415
657
  const raw = await this.httpGet(
@@ -417,12 +659,23 @@ var AnyAPI = class {
417
659
  );
418
660
  return mapCatalogList(raw);
419
661
  }
662
+ /** Ranked catalog search. GET /catalog/search. Browse never accepts a query. */
663
+ async search(options) {
664
+ const search = new URLSearchParams({ q: options.query });
665
+ if (options.category) search.set("category", options.category);
666
+ if (options.platform) search.set("platform", options.platform);
667
+ if (options.limit !== void 0) search.set("limit", String(options.limit));
668
+ const raw = await this.httpGet(
669
+ `/catalog/search?${search.toString()}`
670
+ );
671
+ return mapCatalogSearch(raw);
672
+ }
420
673
  /** Describe a single SKU by slug. GET /v1/apis/{slug}. 404 -> NotFoundError. See SPEC 2.7. */
421
674
  async describe(slug) {
422
675
  const raw = await this.httpGet(
423
676
  `/v1/apis/${encodeURIComponent(slug)}`
424
677
  );
425
- return mapCatalogEntry(raw);
678
+ return mapCatalogDetail(raw);
426
679
  }
427
680
  /** Internal GET against the gateway with the same auth/retry/error machinery. */
428
681
  httpGet(path) {
@@ -447,7 +700,10 @@ var AnyAPI = class {
447
700
  }
448
701
  let attempt = 0;
449
702
  for (; ; ) {
450
- const { signal, timeoutSignal } = composeSignal(opts.timeoutMs, opts.signal);
703
+ const { signal, timeoutSignal } = composeSignal(
704
+ opts.timeoutMs,
705
+ opts.signal
706
+ );
451
707
  let response;
452
708
  try {
453
709
  response = await this.fetchImpl(url, {
@@ -480,7 +736,11 @@ var AnyAPI = class {
480
736
  try {
481
737
  return JSON.parse(text);
482
738
  } catch {
483
- throw new AnyAPIError("failed to parse response JSON", 200, requestId);
739
+ throw new AnyAPIError(
740
+ "failed to parse response JSON",
741
+ 200,
742
+ requestId
743
+ );
484
744
  }
485
745
  }
486
746
  const body = await response.text().catch(() => "");
@@ -602,9 +862,9 @@ var AhrefsNamespace = class {
602
862
  /**
603
863
  * Ahrefs Backlinks
604
864
  *
605
- * Get the referring pages linking to a domain or URL, each with the source page, anchor text, linking domain rating, and page title. Transparent per-request USD pricing.
865
+ * Get the referring pages linking to a domain or URL, each with the source page, anchor text, linking domain rating, and page title.
606
866
  *
607
- * Price: $0.0195 per request.
867
+ * Price: $0.0195 per request plus $0 per result (maximum $0.0195).
608
868
  *
609
869
  * @example
610
870
  * const res = await client.ahrefs.backlinks({ url: "ahrefs.com", mode: "exact" });
@@ -615,9 +875,9 @@ var AhrefsNamespace = class {
615
875
  /**
616
876
  * Ahrefs Keyword Ideas
617
877
  *
618
- * Get related keyword suggestions for any seed term, each with an Ahrefs difficulty and search-volume bucket. Transparent per-request USD pricing.
878
+ * Get related keyword suggestions for any seed term, each with an Ahrefs difficulty and search-volume bucket.
619
879
  *
620
- * Price: $0.0015 per request plus $0.018 per result.
880
+ * Price: $0.0015 per request plus $0.018 per result (maximum $0.0195).
621
881
  *
622
882
  * @example
623
883
  * const res = await client.ahrefs.keywordIdeas({ keyword: "coffee", country: "us" });
@@ -628,9 +888,9 @@ var AhrefsNamespace = class {
628
888
  /**
629
889
  * Ahrefs Keyword Difficulty
630
890
  *
631
- * Get the Ahrefs keyword-difficulty metrics for any search term: the difficulty score (0-100) and the number of referring domains a page needs to rank in the top 10 - as normalized JSON with transparent per-request USD pricing.
891
+ * Get the Ahrefs keyword-difficulty metrics for any search term: the difficulty score (0-100) and the number of referring domains a page needs to rank in the top 10 - as normalized JSON.
632
892
  *
633
- * Price: $0.0015 per request plus $0.018 per result.
893
+ * Price: $0.0015 per request plus $0.018 per result (maximum $0.0195).
634
894
  *
635
895
  * @example
636
896
  * const res = await client.ahrefs.keywords({ keyword: "seo tools", country: "us" });
@@ -641,9 +901,9 @@ var AhrefsNamespace = class {
641
901
  /**
642
902
  * Ahrefs Domain Overview
643
903
  *
644
- * Get an SEO authority overview for any domain or URL: Domain Rating, total backlinks, and referring domains - as normalized JSON with transparent per-request USD pricing.
904
+ * Get an SEO authority overview for any domain or URL: Domain Rating, total backlinks, and referring domains - as normalized JSON.
645
905
  *
646
- * Price: $0.0015 per request plus $0.018 per result.
906
+ * Price: $0.0015 per request plus $0.018 per result (maximum $0.0195).
647
907
  *
648
908
  * @example
649
909
  * const res = await client.ahrefs.overview({ url: "ahrefs.com", mode: "subdomains" });
@@ -662,12 +922,12 @@ var AirbnbNamespace = class {
662
922
  /**
663
923
  * Airbnb Search
664
924
  *
665
- * Search Airbnb listings by location and dates and get results (name, price, rating, host) as normalized JSON with flat per-request USD pricing.
925
+ * Search Airbnb listings by location and dates with optional price, beds/bedrooms/bathrooms, and guest-party filters and get results (name, total-stay price label, rating, host) as normalized JSON.
666
926
  *
667
- * Price: $0.00008 per request plus $0.0015 per result.
927
+ * Price: $0.00008 per request plus $0.0015 per result (maximum $0.03008).
668
928
  *
669
929
  * @example
670
- * const res = await client.airbnb.search({ location: "San Diego", limit: 3 });
930
+ * const res = await client.airbnb.search({ location: "San Diego", adults: 2, limit: 3, minBedrooms: 3 });
671
931
  */
672
932
  search(input, options) {
673
933
  return this._core.run("airbnb.search", input, options);
@@ -683,9 +943,9 @@ var AlibabaNamespace = class {
683
943
  /**
684
944
  * Alibaba Search
685
945
  *
686
- * Search Alibaba by keyword and get up to 25 wholesale listings - title, price range, minimum order, and supplier - in one normalized, flat-priced response.
946
+ * Search Alibaba by keyword and get up to 25 wholesale listings - title, price range, minimum order, and supplier - in one normalized response.
687
947
  *
688
- * Price: $0.0012 per result.
948
+ * Price: $0 per request plus $0.0012 per result (maximum $0.03).
689
949
  *
690
950
  * @example
691
951
  * const res = await client.alibaba.search({ query: "bluetooth speaker", limit: 3 });
@@ -704,9 +964,9 @@ var AmazonNamespace = class {
704
964
  /**
705
965
  * Amazon Products by ASIN
706
966
  *
707
- * Look up to 10 Amazon products in one call by ASIN - title, brand, price, ratings, images, and attributes - as normalized JSON with flat per-request USD pricing.
967
+ * Look up to 10 Amazon products in one call by ASIN - title, brand, price, ratings, images, and attributes - as normalized JSON.
708
968
  *
709
- * Price: $0.0035 per asin.
969
+ * Price: $0 per request plus $0.0035 per asin (maximum $0.035).
710
970
  *
711
971
  * @example
712
972
  * const res = await client.amazon.asins({ asins: ["B09G9FPHY6"], limit: 3 });
@@ -717,9 +977,9 @@ var AmazonNamespace = class {
717
977
  /**
718
978
  * Amazon Bestsellers
719
979
  *
720
- * List the top-ranked products of any Amazon Best Sellers category - rank, title, price, and rating - in one normalized, flat-priced request.
980
+ * List the top-ranked products of any Amazon Best Sellers category - rank, title, price, and rating - in one normalized request.
721
981
  *
722
- * Price: $0.0041 per result.
982
+ * Price: $0 per request plus $0.0041 per result (maximum $0.082).
723
983
  *
724
984
  * @example
725
985
  * const res = await client.amazon.bestsellers({ url: "https://www.amazon.com/gp/bestsellers/electronics", limit: 3 });
@@ -730,9 +990,9 @@ var AmazonNamespace = class {
730
990
  /**
731
991
  * Amazon Product
732
992
  *
733
- * Fetch full Amazon product details (title, brand, price when in stock, images, ratings, review count, variants, and attributes) from a product URL, with transparent per-request USD pricing.
993
+ * Fetch full Amazon product details (title, brand, price when in stock, images, ratings, review count, variants, and attributes) from a product URL.
734
994
  *
735
- * Price: $0.001 per request plus $0.0081 per result.
995
+ * Price: $0.001 per request plus $0.0081 per result (maximum $0.0091).
736
996
  *
737
997
  * @example
738
998
  * const res = await client.amazon.product({ url: "https://www.amazon.com/dp/B00NTCH52W" });
@@ -743,12 +1003,12 @@ var AmazonNamespace = class {
743
1003
  /**
744
1004
  * Amazon Reviews
745
1005
  *
746
- * Pull up to 50 customer reviews for any Amazon product by ASIN or URL - rating, title, text, date, and verified-purchase badge - at a flat per-request USD price.
1006
+ * Pull up to 50 customer reviews for any Amazon product by ASIN or URL - rating, title, text, date, and verified-purchase badge.
747
1007
  *
748
1008
  * Price: $0.01625 per request.
749
1009
  *
750
1010
  * @example
751
- * const res = await client.amazon.reviews({ product: "B07FZ8S74R", limit: 3 });
1011
+ * const res = await client.amazon.reviews({ product: "B07PXGQC1Q", limit: 3 });
752
1012
  */
753
1013
  reviews(input, options) {
754
1014
  return this._core.run("amazon.reviews", input, options);
@@ -756,9 +1016,9 @@ var AmazonNamespace = class {
756
1016
  /**
757
1017
  * Amazon Search
758
1018
  *
759
- * Search Amazon from any search or category URL and get up to 20 matching products - title, price, rating, and thumbnail - in one normalized, flat-priced response.
1019
+ * Search Amazon from any search or category URL and get up to 20 matching products - title, price, rating, and thumbnail - in one normalized response.
760
1020
  *
761
- * Price: $0.0035 per result.
1021
+ * Price: $0 per request plus $0.0035 per result (maximum $0.07).
762
1022
  *
763
1023
  * @example
764
1024
  * const res = await client.amazon.search({ url: "https://www.amazon.com/s?k=laptop", limit: 3 });
@@ -768,6 +1028,118 @@ var AmazonNamespace = class {
768
1028
  }
769
1029
  };
770
1030
 
1031
+ // src/generated/platforms/apollo.ts
1032
+ var ApolloNamespace = class {
1033
+ constructor(_core) {
1034
+ this._core = _core;
1035
+ }
1036
+ _core;
1037
+ /**
1038
+ * Apollo Organization
1039
+ *
1040
+ * Get a complete organization profile by ID including company, industry, employee, revenue, funding, location, and technology data.
1041
+ *
1042
+ * Price: $0.012 per request.
1043
+ *
1044
+ * @example
1045
+ * const res = await client.apollo.organization({ organizationId: "5e66b6381e05b4008c8331b8" });
1046
+ */
1047
+ organization(input, options) {
1048
+ return this._core.run("apollo.organization", input, options);
1049
+ }
1050
+ /**
1051
+ * Apollo Organization Enrichment
1052
+ *
1053
+ * Enrich an organization by domain with company profile, industry, employee, revenue, funding, location, and technology data.
1054
+ *
1055
+ * Price: $0.012 per request.
1056
+ *
1057
+ * @example
1058
+ * const res = await client.apollo.organizationEnrich({ domain: "apollo.io" });
1059
+ */
1060
+ organizationEnrich(input, options) {
1061
+ return this._core.run("apollo.organization_enrich", input, options);
1062
+ }
1063
+ /**
1064
+ * Apollo Organization Jobs
1065
+ *
1066
+ * Get current job postings for an organization by ID with title, location, source URL, and timestamps.
1067
+ *
1068
+ * Price: $0.012 per request.
1069
+ *
1070
+ * @example
1071
+ * const res = await client.apollo.organizationJobs({ organizationId: "5e66b6381e05b4008c8331b8" });
1072
+ */
1073
+ organizationJobs(input, options) {
1074
+ return this._core.run("apollo.organization_jobs", input, options);
1075
+ }
1076
+ /**
1077
+ * Apollo Organization News
1078
+ *
1079
+ * Search news related to one or more organizations with article details, categories, and pagination totals.
1080
+ *
1081
+ * Price: $0.012 per request.
1082
+ *
1083
+ * @example
1084
+ * const res = await client.apollo.organizationNews({ organizationIds: ["5e66b6381e05b4008c8331b8"], limit: 3, page: 1 });
1085
+ */
1086
+ organizationNews(input, options) {
1087
+ return this._core.run("apollo.organization_news", input, options);
1088
+ }
1089
+ /**
1090
+ * Apollo Bulk Organization Enrichment
1091
+ *
1092
+ * Enrich up to 10 organization domains in one request with normalized company profile, industry, employee, revenue, funding, and location data.
1093
+ *
1094
+ * Price: $0.06 per request.
1095
+ *
1096
+ * @example
1097
+ * const res = await client.apollo.organizationsBulkEnrich({ domains: ["apollo.io", "openai.com"] });
1098
+ */
1099
+ organizationsBulkEnrich(input, options) {
1100
+ return this._core.run("apollo.organizations_bulk_enrich", input, options);
1101
+ }
1102
+ /**
1103
+ * Apollo Organization Search
1104
+ *
1105
+ * Search organizations by location, employee range, industry, and keywords with normalized company records and pagination totals.
1106
+ *
1107
+ * Price: $0.012 per request.
1108
+ *
1109
+ * @example
1110
+ * const res = await client.apollo.organizationsSearch({ keywords: "Apollo", limit: 3, page: 1 });
1111
+ */
1112
+ organizationsSearch(input, options) {
1113
+ return this._core.run("apollo.organizations_search", input, options);
1114
+ }
1115
+ /**
1116
+ * Apollo People Search
1117
+ *
1118
+ * Search people by title, seniority, person or organization location, employee range, and keywords with normalized profile summaries.
1119
+ *
1120
+ * Price: $0.01 per request.
1121
+ *
1122
+ * @example
1123
+ * const res = await client.apollo.peopleSearch({ limit: 3, page: 1, titles: ["CEO"] });
1124
+ */
1125
+ peopleSearch(input, options) {
1126
+ return this._core.run("apollo.people_search", input, options);
1127
+ }
1128
+ /**
1129
+ * Apollo Person Enrichment
1130
+ *
1131
+ * Enrich a person by email, LinkedIn URL, or name and organization with contact, role, location, and company data.
1132
+ *
1133
+ * Price: $0.012 per request.
1134
+ *
1135
+ * @example
1136
+ * const res = await client.apollo.personEnrich({ domain: "apollo.io", firstName: "Tim", lastName: "Zheng" });
1137
+ */
1138
+ personEnrich(input, options) {
1139
+ return this._core.run("apollo.person_enrich", input, options);
1140
+ }
1141
+ };
1142
+
771
1143
  // src/generated/platforms/appstore.ts
772
1144
  var AppstoreNamespace = class {
773
1145
  constructor(_core) {
@@ -777,9 +1149,9 @@ var AppstoreNamespace = class {
777
1149
  /**
778
1150
  * App Store Reviews
779
1151
  *
780
- * Get App Store reviews for any iOS app by app ID, in any storefront country - ratings, titles, and review text with transparent per-request USD pricing.
1152
+ * Get App Store reviews for any iOS app by app ID, in any storefront country - ratings, titles, and review text.
781
1153
  *
782
- * Price: $0.0001 per result.
1154
+ * Price: $0 per request plus $0.0001 per result (maximum $0.01).
783
1155
  *
784
1156
  * @example
785
1157
  * const res = await client.appstore.reviews({ appId: "389801252", country: "us", limit: 3 });
@@ -798,7 +1170,7 @@ var BlueskyNamespace = class {
798
1170
  /**
799
1171
  * Bluesky Post
800
1172
  *
801
- * Get a single Bluesky post by URL - text, author handle, like, reply, and repost counts as clean JSON, billed per request in USD.
1173
+ * Get a single Bluesky post by URL - text, author handle, like, reply, and repost counts as clean JSON.
802
1174
  *
803
1175
  * Price: $0.002 per request.
804
1176
  *
@@ -811,7 +1183,7 @@ var BlueskyNamespace = class {
811
1183
  /**
812
1184
  * Bluesky Profile
813
1185
  *
814
- * Get a Bluesky user's public profile by handle - display name, bio, follower and post counts as clean JSON, billed per request in USD.
1186
+ * Get a Bluesky user's public profile by handle - display name, bio, follower and post counts as clean JSON.
815
1187
  *
816
1188
  * Price: $0.002 per request.
817
1189
  *
@@ -824,7 +1196,7 @@ var BlueskyNamespace = class {
824
1196
  /**
825
1197
  * Bluesky User Posts
826
1198
  *
827
- * List a Bluesky account's recent posts (text, author handle, like, reply, and repost counts) by handle as clean JSON, normalized across providers, billed per request in USD.
1199
+ * List a Bluesky account's recent posts (text, author handle, like, reply, and repost counts) by handle as clean JSON, normalized across providers.
828
1200
  *
829
1201
  * Price: $0.002 per request.
830
1202
  *
@@ -845,12 +1217,12 @@ var BookingNamespace = class {
845
1217
  /**
846
1218
  * Booking.com Search
847
1219
  *
848
- * Search Booking.com stays by destination and dates and get hotel results (name, price, review score, location) as normalized JSON with flat per-request USD pricing.
1220
+ * Search Booking.com stays by destination and dates with optional guest and room occupancy and get hotel results (name, price, review score, location) as normalized JSON.
849
1221
  *
850
- * Price: $0.002 per request plus $0.0045 per result.
1222
+ * Price: $0.002 per request plus $0.0045 per result (maximum $0.092).
851
1223
  *
852
1224
  * @example
853
- * const res = await client.booking.search({ query: "New York", checkIn: "2026-09-01", checkOut: "2026-09-03", limit: 3 });
1225
+ * const res = await client.booking.search({ query: "New York", adults: 2, checkIn: "2026-09-01", checkOut: "2026-09-03", limit: 3 });
854
1226
  */
855
1227
  search(input, options) {
856
1228
  return this._core.run("booking.search", input, options);
@@ -866,9 +1238,9 @@ var CoinmarketcapNamespace = class {
866
1238
  /**
867
1239
  * CoinMarketCap Listings
868
1240
  *
869
- * Get the current top cryptocurrencies from CoinMarketCap - rank, price, market cap, volume, and 24h change - as normalized JSON with transparent per-request USD pricing.
1241
+ * Get the current top cryptocurrencies from CoinMarketCap - rank, price, market cap, volume, and 24h change - as normalized JSON.
870
1242
  *
871
- * Price: $0.0018 per result.
1243
+ * Price: $0 per request plus $0.0018 per result (maximum $0.045).
872
1244
  *
873
1245
  * @example
874
1246
  * const res = await client.coinmarketcap.listings({ limit: 5 });
@@ -887,9 +1259,9 @@ var CongressNamespace = class {
887
1259
  /**
888
1260
  * Congress Stock Trades
889
1261
  *
890
- * Get US Congress members' financial disclosures and stock trades - member, ticker, transaction type, amount range, and dates - filterable by member, ticker, or date range, billed per request in USD.
1262
+ * Get US Congress members' financial disclosures and stock trades - member, ticker, transaction type, amount range, and dates - filterable by member, ticker, or date range.
891
1263
  *
892
- * Price: $0.001 per request plus $0.0019 per result.
1264
+ * Price: $0.001 per request plus $0.0019 per result (maximum $0.0485).
893
1265
  *
894
1266
  * @example
895
1267
  * const res = await client.congress.trades({ limit: 5 });
@@ -908,18 +1280,91 @@ var DexscreenerNamespace = class {
908
1280
  /**
909
1281
  * DEX Screener Tokens
910
1282
  *
911
- * List trending tokens on any blockchain from DEX Screener - price, liquidity, volume, transactions, and market cap - sorted how you want, as normalized JSON with transparent per-request USD pricing.
1283
+ * List trending tokens on any blockchain from DEX Screener - price, liquidity, volume, transactions, and market cap - sorted how you want, as normalized JSON.
912
1284
  *
913
- * Price: $0.02 per request plus $0.0015 per result.
1285
+ * Price: $0.02 per request plus $0.0015 per result (maximum $0.0575).
914
1286
  *
915
1287
  * @example
916
- * const res = await client.dexscreener.tokens({ chain: "solana", limit: 5 });
1288
+ * const res = await client.dexscreener.tokens({ chain: "solana", limit: 5, min24HVol: 100000 });
917
1289
  */
918
1290
  tokens(input, options) {
919
1291
  return this._core.run("dexscreener.tokens", input, options);
920
1292
  }
921
1293
  };
922
1294
 
1295
+ // src/generated/platforms/douyin.ts
1296
+ var DouyinNamespace = class {
1297
+ constructor(_core) {
1298
+ this._core = _core;
1299
+ }
1300
+ _core;
1301
+ /**
1302
+ * Douyin Profile
1303
+ *
1304
+ * Look up a public Douyin profile by sec_user_id and return normalized profile statistics.
1305
+ *
1306
+ * Price: $0.001 per request.
1307
+ *
1308
+ * @example
1309
+ * const res = await client.douyin.profile({ secUserId: "MS4wLjABAAAAW9FWcqS7RdQAWPd2AA5fL_ilmqsIFUCQ_Iym6Yh9_cUa6ZRqVLjVQSUjlHrfXY1Y" });
1310
+ */
1311
+ profile(input, options) {
1312
+ return this._core.run("douyin.profile", input, options);
1313
+ }
1314
+ /**
1315
+ * Douyin Video Search
1316
+ *
1317
+ * Search public Douyin videos by keyword with sorting, time, duration, and content filters.
1318
+ *
1319
+ * Price: $0.01 per request.
1320
+ *
1321
+ * @example
1322
+ * const res = await client.douyin.searchVideos({ query: "机器人", duration: "0", publishedWithin: "0", sort: "0" });
1323
+ */
1324
+ searchVideos(input, options) {
1325
+ return this._core.run("douyin.search_videos", input, options);
1326
+ }
1327
+ /**
1328
+ * Douyin User Posts
1329
+ *
1330
+ * List public posts from a Douyin user with normalized engagement data and pagination.
1331
+ *
1332
+ * Price: $0.001 per request.
1333
+ *
1334
+ * @example
1335
+ * const res = await client.douyin.userPosts({ secUserId: "MS4wLjABAAAANXSltcLCzDGmdNFI2Q_QixVTr67NiYzjKOIP5s03CAE", limit: 20, sort: 0 });
1336
+ */
1337
+ userPosts(input, options) {
1338
+ return this._core.run("douyin.user_posts", input, options);
1339
+ }
1340
+ /**
1341
+ * Douyin Video
1342
+ *
1343
+ * Fetch a public Douyin video by share URL with normalized author and engagement data.
1344
+ *
1345
+ * Price: $0.001 per request.
1346
+ *
1347
+ * @example
1348
+ * const res = await client.douyin.video({ url: "https://www.douyin.com/video/6894784055775071503" });
1349
+ */
1350
+ video(input, options) {
1351
+ return this._core.run("douyin.video", input, options);
1352
+ }
1353
+ /**
1354
+ * Douyin Video Comments
1355
+ *
1356
+ * List public comments on a Douyin video with author and engagement data.
1357
+ *
1358
+ * Price: $0.001 per request.
1359
+ *
1360
+ * @example
1361
+ * const res = await client.douyin.videoComments({ videoId: "7448118827402972455" });
1362
+ */
1363
+ videoComments(input, options) {
1364
+ return this._core.run("douyin.video_comments", input, options);
1365
+ }
1366
+ };
1367
+
923
1368
  // src/generated/platforms/ebay.ts
924
1369
  var EbayNamespace = class {
925
1370
  constructor(_core) {
@@ -929,12 +1374,12 @@ var EbayNamespace = class {
929
1374
  /**
930
1375
  * eBay Search
931
1376
  *
932
- * Search eBay active listings by keyword and get title, price, condition, shipping, seller, and sold count in one normalized response. You are billed per result returned.
1377
+ * Search eBay active listings by keyword with optional price-range, item-condition, listing-type, and sort filters and get title, price, condition, shipping, and seller in one normalized response.
933
1378
  *
934
- * Price: $0.001 per request plus $0.00234 per result.
1379
+ * Price: $0.001 per request plus $0.00234 per result (maximum $0.0595).
935
1380
  *
936
1381
  * @example
937
- * const res = await client.ebay.search({ query: "nintendo switch", limit: 3 });
1382
+ * const res = await client.ebay.search({ query: "nintendo switch", limit: 3, sort: "price_low" });
938
1383
  */
939
1384
  search(input, options) {
940
1385
  return this._core.run("ebay.search", input, options);
@@ -942,12 +1387,12 @@ var EbayNamespace = class {
942
1387
  /**
943
1388
  * eBay Sold Listings
944
1389
  *
945
- * Retrieve recently sold eBay listings for any keyword - sold price, sale date, condition, and item details - ideal for pricing research, at a flat per-request USD price.
1390
+ * Retrieve recently sold eBay listings for any keyword with optional price-range and sort filters (sold price, sale date, condition, item details); ideal for pricing research.
946
1391
  *
947
- * Price: $0.00005 per request plus $0.004 per result.
1392
+ * Price: $0.00005 per request plus $0.004 per result (maximum $0.10005).
948
1393
  *
949
1394
  * @example
950
- * const res = await client.ebay.soldListings({ query: "nintendo switch", limit: 3 });
1395
+ * const res = await client.ebay.soldListings({ query: "nintendo switch", limit: 3, sort: "price_high" });
951
1396
  */
952
1397
  soldListings(input, options) {
953
1398
  return this._core.run("ebay.sold_listings", input, options);
@@ -963,9 +1408,9 @@ var EmailNamespace = class {
963
1408
  /**
964
1409
  * Email Finder
965
1410
  *
966
- * Find a person's work email address from their name and company domain, with transparent per-request USD pricing.
1411
+ * Find a person's work email address from their name and company domain.
967
1412
  *
968
- * Price: $0.005 per request plus $0.008 per result.
1413
+ * Price: $0.005 per request plus $0.008 per result (maximum $0.013).
969
1414
  *
970
1415
  * @example
971
1416
  * const res = await client.email.find({ person: { domain: "stripe.com", firstName: "Patrick", surname: "Collison" } });
@@ -976,9 +1421,9 @@ var EmailNamespace = class {
976
1421
  /**
977
1422
  * Email Verifier
978
1423
  *
979
- * Verify any email address for deliverability - syntax, domain, and mailbox checks in one normalized response, priced per request in USD.
1424
+ * Verify any email address for deliverability - syntax, domain, and mailbox checks in one normalized response.
980
1425
  *
981
- * Price: $0.0008 per result.
1426
+ * Price: $0 per request plus $0.0008 per result (maximum $0.0008).
982
1427
  *
983
1428
  * @example
984
1429
  * const res = await client.email.verify({ email: "patrick@stripe.com" });
@@ -997,7 +1442,7 @@ var FacebookNamespace = class {
997
1442
  /**
998
1443
  * Facebook Ad Details
999
1444
  *
1000
- * Look up a single Meta Ad Library ad by ID or URL and get the advertiser, creative text, call-to-action, platforms, and run dates as clean JSON, billed per request in USD.
1445
+ * Look up a single Meta Ad Library ad by ID or URL and get the advertiser, creative text, call-to-action, platforms, and run dates as clean JSON.
1001
1446
  *
1002
1447
  * Price: $0.002 per request.
1003
1448
  *
@@ -1010,7 +1455,7 @@ var FacebookNamespace = class {
1010
1455
  /**
1011
1456
  * Facebook Ad Transcript
1012
1457
  *
1013
- * Get the spoken-word transcript of a Meta Ad Library video ad by ad ID or URL, billed per request in USD.
1458
+ * Get the spoken-word transcript of a Meta Ad Library video ad by ad ID or URL.
1014
1459
  *
1015
1460
  * Price: $0.002 per request.
1016
1461
  *
@@ -1028,7 +1473,7 @@ var FacebookNamespace = class {
1028
1473
  * Price: $0.002 per request.
1029
1474
  *
1030
1475
  * @example
1031
- * const res = await client.facebook.adsSearch({ query: "nike", country: "US" });
1476
+ * const res = await client.facebook.adsSearch({ query: "nike", country: "US", searchType: "keyword_exact_phrase" });
1032
1477
  */
1033
1478
  adsSearch(input, options) {
1034
1479
  return this._core.run("facebook.ads_search", input, options);
@@ -1052,7 +1497,7 @@ var FacebookNamespace = class {
1052
1497
  /**
1053
1498
  * Facebook Comment Replies
1054
1499
  *
1055
- * List the replies to a Facebook post comment - text, author, reactions, and timestamps - as normalized JSON at a flat USD price per request.
1500
+ * List the replies to a Facebook post comment - text, author, reactions, and timestamps - as normalized JSON at a.
1056
1501
  *
1057
1502
  * Price: $0.002 per request.
1058
1503
  *
@@ -1081,12 +1526,12 @@ var FacebookNamespace = class {
1081
1526
  /**
1082
1527
  * Facebook Company Ads
1083
1528
  *
1084
- * List the Meta Ad Library ads a company is running by page ID or company name - creative text, format, platforms, and run dates - with cursor pagination, billed per request in USD.
1529
+ * List the Meta Ad Library ads a company is running by page ID or company name - creative text, format, platforms, and run dates - with cursor pagination.
1085
1530
  *
1086
1531
  * Price: $0.002 per request.
1087
1532
  *
1088
1533
  * @example
1089
- * const res = await client.facebook.companyAds({ companyName: "nike" });
1534
+ * const res = await client.facebook.companyAds({ companyName: "nike", sortBy: "recent" });
1090
1535
  */
1091
1536
  companyAds(input, options) {
1092
1537
  return this._core.run("facebook.company_ads", input, options);
@@ -1110,7 +1555,7 @@ var FacebookNamespace = class {
1110
1555
  /**
1111
1556
  * Facebook Event Details
1112
1557
  *
1113
- * Fetch full details for a single Facebook event by ID or URL - name, schedule, venue, hosts, and attendance - as normalized JSON at a flat USD price per request.
1558
+ * Fetch full details for a single Facebook event by ID or URL - name, schedule, venue, hosts, and attendance - as normalized JSON at a.
1114
1559
  *
1115
1560
  * Price: $0.002 per request.
1116
1561
  *
@@ -1123,7 +1568,7 @@ var FacebookNamespace = class {
1123
1568
  /**
1124
1569
  * Facebook Events
1125
1570
  *
1126
- * List public Facebook events for a city or place by its events-page URL - event name, date, venue, and attendance - as normalized JSON at a flat USD price per request.
1571
+ * List public Facebook events for a city or place by its events-page URL - event name, date, venue, and attendance - as normalized JSON at a.
1127
1572
  *
1128
1573
  * Price: $0.002 per request.
1129
1574
  *
@@ -1152,7 +1597,7 @@ var FacebookNamespace = class {
1152
1597
  /**
1153
1598
  * Facebook Events Search
1154
1599
  *
1155
- * Search public Facebook events by keyword and get structured event records - name, schedule, venue, pricing, and attendance - as normalized JSON at a flat USD price per request.
1600
+ * Search public Facebook events by keyword and get structured event records - name, schedule, venue, pricing, and attendance - as normalized JSON at a.
1156
1601
  *
1157
1602
  * Price: $0.002 per request.
1158
1603
  *
@@ -1181,9 +1626,9 @@ var FacebookNamespace = class {
1181
1626
  /**
1182
1627
  * Facebook Followers
1183
1628
  *
1184
- * List the public followers - or accounts followed - of any Facebook page or profile URL as normalized JSON records, priced per request in USD.
1629
+ * List the public followers - or accounts followed - of any Facebook page or profile URL as normalized JSON records.
1185
1630
  *
1186
- * Price: $0.006 per result.
1631
+ * Price: $0 per request plus $0.006 per result (maximum $0.12).
1187
1632
  *
1188
1633
  * @example
1189
1634
  * const res = await client.facebook.followers({ url: "https://www.facebook.com/nike", limit: 3 });
@@ -1194,7 +1639,7 @@ var FacebookNamespace = class {
1194
1639
  /**
1195
1640
  * Facebook Group Posts
1196
1641
  *
1197
- * Fetch recent posts from any public Facebook group by URL - text, author, reactions, and comment counts - at a flat per-request USD price.
1642
+ * Fetch recent posts from any public Facebook group by URL - text, author, reactions, and comment counts.
1198
1643
  *
1199
1644
  * Price: $0.002 per request.
1200
1645
  *
@@ -1223,12 +1668,12 @@ var FacebookNamespace = class {
1223
1668
  /**
1224
1669
  * Facebook Marketplace
1225
1670
  *
1226
- * Search Facebook Marketplace listings by keyword near a location - title, price, location, and image - as normalized JSON at a flat USD price per request.
1671
+ * Search Facebook Marketplace listings by keyword near a location, with price, condition, delivery, recency, and availability filters - title, price, location, and image - as normalized JSON.
1227
1672
  *
1228
1673
  * Price: $0.002 per request.
1229
1674
  *
1230
1675
  * @example
1231
- * const res = await client.facebook.marketplace({ lat: "30.2677", lng: "-97.7475", query: "bike" });
1676
+ * const res = await client.facebook.marketplace({ lat: "30.2677", lng: "-97.7475", query: "bike", priceMax: 500, priceMin: 100 });
1232
1677
  */
1233
1678
  marketplace(input, options) {
1234
1679
  return this._core.run("facebook.marketplace", input, options);
@@ -1252,7 +1697,7 @@ var FacebookNamespace = class {
1252
1697
  /**
1253
1698
  * Facebook Marketplace Item
1254
1699
  *
1255
- * Fetch full details for a single Facebook Marketplace listing by ID or URL - title, price, location, photos, and attributes - as normalized JSON at a flat USD price per request.
1700
+ * Fetch full details for a single Facebook Marketplace listing by ID or URL - title, price, location, photos, and attributes - as normalized JSON at a.
1256
1701
  *
1257
1702
  * Price: $0.002 per request.
1258
1703
  *
@@ -1265,7 +1710,7 @@ var FacebookNamespace = class {
1265
1710
  /**
1266
1711
  * Facebook Marketplace Location Search
1267
1712
  *
1268
- * Resolve a place name to Facebook Marketplace locations with coordinates and metadata as normalized JSON at a flat USD price per request.
1713
+ * Resolve a place name to Facebook Marketplace locations with coordinates and metadata as normalized JSON at a.
1269
1714
  *
1270
1715
  * Price: $0.002 per request.
1271
1716
  *
@@ -1282,7 +1727,7 @@ var FacebookNamespace = class {
1282
1727
  /**
1283
1728
  * Facebook Page Contact Info
1284
1729
  *
1285
- * Look up a Facebook Page's public contact details - email, phone, website, and address - by page URL or ID, with transparent per-request USD pricing.
1730
+ * Look up a Facebook Page's public contact details - email, phone, website, and address - by page URL or ID.
1286
1731
  *
1287
1732
  * Price: $0.002 per request.
1288
1733
  *
@@ -1295,7 +1740,7 @@ var FacebookNamespace = class {
1295
1740
  /**
1296
1741
  * Facebook Page Photos
1297
1742
  *
1298
- * Fetch recent photos posted by any public Facebook page or profile - image URLs, captions, and dimensions - as normalized JSON at a flat USD price per request.
1743
+ * Fetch recent photos posted by any public Facebook page or profile - image URLs, captions, and dimensions - as normalized JSON at a.
1299
1744
  *
1300
1745
  * Price: $0.002 per request.
1301
1746
  *
@@ -1366,7 +1811,7 @@ var FacebookNamespace = class {
1366
1811
  /**
1367
1812
  * Facebook Post Transcript
1368
1813
  *
1369
- * Get the spoken-word transcript of any public Facebook video post by URL as normalized JSON at a flat USD price per request.
1814
+ * Get the spoken-word transcript of any public Facebook video post by URL as normalized JSON at a.
1370
1815
  *
1371
1816
  * Price: $0.002 per request.
1372
1817
  *
@@ -1392,7 +1837,7 @@ var FacebookNamespace = class {
1392
1837
  /**
1393
1838
  * Facebook Page Events
1394
1839
  *
1395
- * List upcoming and past events hosted by any public Facebook page by URL - name, schedule, venue, and host - as normalized JSON at a flat USD price per request.
1840
+ * List upcoming and past events hosted by any public Facebook page by URL - name, schedule, venue, and host - as normalized JSON at a.
1396
1841
  *
1397
1842
  * Price: $0.002 per request.
1398
1843
  *
@@ -1447,7 +1892,7 @@ var FacebookNamespace = class {
1447
1892
  /**
1448
1893
  * Facebook Company Search
1449
1894
  *
1450
- * Search the Meta Ad Library for advertisers by keyword and get matching pages - page ID, category, verification, follower counts, and linked Instagram - billed per request in USD.
1895
+ * Search the Meta Ad Library for advertisers by keyword and get matching pages - page ID, category, verification, follower counts, and linked Instagram.
1451
1896
  *
1452
1897
  * Price: $0.002 per request.
1453
1898
  *
@@ -1460,9 +1905,9 @@ var FacebookNamespace = class {
1460
1905
  /**
1461
1906
  * Facebook Page Search
1462
1907
  *
1463
- * Search Facebook Pages by keyword, optionally narrowed to a location, and get structured page profiles (name, category, followers, contact details) at a flat USD price per request.
1908
+ * Search Facebook Pages by keyword, optionally narrowed to a location, and get structured page profiles (name, category, followers, contact details) at a.
1464
1909
  *
1465
- * Price: $0.001 per request plus $0.011 per result.
1910
+ * Price: $0.001 per request plus $0.011 per result (maximum $0.111).
1466
1911
  *
1467
1912
  * @example
1468
1913
  * const res = await client.facebook.searchPages({ query: "nike", limit: 3 });
@@ -1473,9 +1918,9 @@ var FacebookNamespace = class {
1473
1918
  /**
1474
1919
  * Facebook Post Search
1475
1920
  *
1476
- * Search public Facebook posts by keyword, optionally filtered by location, and get structured post records (text, author, engagement) with transparent per-request USD pricing.
1921
+ * Search public Facebook posts by keyword, optionally filtered by location, and get structured post records (text, author, engagement).
1477
1922
  *
1478
- * Price: $0.003 per result.
1923
+ * Price: $0 per request plus $0.003 per result (maximum $0.06).
1479
1924
  *
1480
1925
  * @example
1481
1926
  * const res = await client.facebook.searchPosts({ query: "nike", limit: 3 });
@@ -1494,9 +1939,9 @@ var FiverrNamespace = class {
1494
1939
  /**
1495
1940
  * Fiverr Gig Search
1496
1941
  *
1497
- * Extract Fiverr gig listings from any search or category URL - titles, sellers, ratings, and pricing as structured JSON with transparent per-request USD pricing.
1942
+ * Extract Fiverr gig listings from any search or category URL - titles, sellers, ratings, and pricing as structured JSON.
1498
1943
  *
1499
- * Price: $0.0015 per result.
1944
+ * Price: $0 per request plus $0.0015 per result (maximum $0.03).
1500
1945
  *
1501
1946
  * @example
1502
1947
  * const res = await client.fiverr.search({ url: "https://www.fiverr.com/search/gigs?query=logo%20design", limit: 3 });
@@ -1717,12 +2162,12 @@ var GlassdoorNamespace = class {
1717
2162
  /**
1718
2163
  * Glassdoor Jobs
1719
2164
  *
1720
- * Fetch job listings from any Glassdoor company or job search page URL - up to 20 normalized job records per request at a flat USD price.
2165
+ * Search Glassdoor job listings by keyword and location, or scrape any Glassdoor company or job search page URL - up to 20 normalized job records per request.
1721
2166
  *
1722
- * Price: $0.005 per request plus $0.00475 per result.
2167
+ * Price: $0.005 per request plus $0.00475 per result (maximum $0.1).
1723
2168
  *
1724
2169
  * @example
1725
- * const res = await client.glassdoor.jobs({ url: "https://www.glassdoor.com/Job/software-engineer-jobs-SRCH_KO0,17.htm", limit: 3 });
2170
+ * const res = await client.glassdoor.jobs({ limit: 3, location: "United States", postedLimit: "month", query: "software engineer" });
1726
2171
  */
1727
2172
  jobs(input, options) {
1728
2173
  return this._core.run("glassdoor.jobs", input, options);
@@ -1735,45 +2180,110 @@ var GoogleNamespace = class {
1735
2180
  this._core = _core;
1736
2181
  }
1737
2182
  _core;
2183
+ /**
2184
+ * Google Autocomplete
2185
+ *
2186
+ * Get Google search autocomplete suggestions for a partial query (keyword ideas).
2187
+ *
2188
+ * Price: $0.00099 per request.
2189
+ *
2190
+ * @example
2191
+ * const res = await client.google.autocomplete({ query: "best coff" });
2192
+ */
2193
+ autocomplete(input, options) {
2194
+ return this._core.run("google.autocomplete", input, options);
2195
+ }
1738
2196
  /**
1739
2197
  * Google Images
1740
2198
  *
1741
- * Run a Google Images search and get structured results - image URLs, dimensions, titles, and source pages - with flat per-request USD pricing.
2199
+ * Run a Google Images search and get structured results - image URLs, dimensions, titles, and source pages.
1742
2200
  *
1743
- * Price: $0.00005 per request plus $0.0024 per result.
2201
+ * Price: $0.00099 per request plus $0.00009 per result (maximum $0.00198).
1744
2202
  *
1745
2203
  * @example
1746
- * const res = await client.google.images({ query: "golden retriever", limit: 5 });
2204
+ * const res = await client.google.images({ query: "golden retriever", gl: "us", hl: "en", limit: 5 });
1747
2205
  */
1748
2206
  images(input, options) {
1749
2207
  return this._core.run("google.images", input, options);
1750
2208
  }
2209
+ /**
2210
+ * Google Lens
2211
+ *
2212
+ * Reverse image search: find web pages and visual matches for an image URL.
2213
+ *
2214
+ * Price: $0.00297 per request.
2215
+ *
2216
+ * @example
2217
+ * const res = await client.google.lens({ url: "https://i.imgur.com/HBrB8p0.png" });
2218
+ */
2219
+ lens(input, options) {
2220
+ return this._core.run("google.lens", input, options);
2221
+ }
1751
2222
  /**
1752
2223
  * Google News
1753
2224
  *
1754
- * Search Google News by keyword and get fresh articles - headlines, sources, links, and publish times - as clean JSON, billed per request in USD.
2225
+ * Search Google News by keyword and get fresh articles - headlines, sources, links, and publish times - as clean JSON.
1755
2226
  *
1756
- * Price: $0.00325 per request.
2227
+ * Price: $0.00099 per request.
1757
2228
  *
1758
2229
  * @example
1759
- * const res = await client.google.news({ query: "openai", limit: 5 });
2230
+ * const res = await client.google.news({ query: "openai", gl: "us", hl: "en" });
1760
2231
  */
1761
2232
  news(input, options) {
1762
2233
  return this._core.run("google.news", input, options);
1763
2234
  }
2235
+ /**
2236
+ * Google Patents
2237
+ *
2238
+ * Search Google Patents with title, patent number, inventor, assignee, key dates, and PDF link.
2239
+ *
2240
+ * Price: $0.00099 per request.
2241
+ *
2242
+ * @example
2243
+ * const res = await client.google.patents({ query: "wireless charging" });
2244
+ */
2245
+ patents(input, options) {
2246
+ return this._core.run("google.patents", input, options);
2247
+ }
2248
+ /**
2249
+ * Google Scholar
2250
+ *
2251
+ * Search Google Scholar for academic papers with title, authors, citation count, and PDF link.
2252
+ *
2253
+ * Price: $0.00099 per request.
2254
+ *
2255
+ * @example
2256
+ * const res = await client.google.scholar({ query: "attention is all you need" });
2257
+ */
2258
+ scholar(input, options) {
2259
+ return this._core.run("google.scholar", input, options);
2260
+ }
1764
2261
  /**
1765
2262
  * Google Search
1766
2263
  *
1767
- * Run a Google web search and get the organic results (title, link, snippet, position) as clean JSON. One call, billed per request in real dollars.
2264
+ * Run a Google web search and get the organic results (title, link, snippet, position) as clean JSON.
1768
2265
  *
1769
2266
  * Price: $0.00099 per request.
1770
2267
  *
1771
2268
  * @example
1772
- * const res = await client.google.search({ query: "best coffee maker" });
2269
+ * const res = await client.google.search({ query: "best coffee maker", gl: "us", hl: "en", limit: 10 });
1773
2270
  */
1774
2271
  search(input, options) {
1775
2272
  return this._core.run("google.search", input, options);
1776
2273
  }
2274
+ /**
2275
+ * Google Videos
2276
+ *
2277
+ * Search Google for video results (YouTube and others) with title, link, thumbnail, and source.
2278
+ *
2279
+ * Price: $0.00099 per request.
2280
+ *
2281
+ * @example
2282
+ * const res = await client.google.videos({ query: "lofi hip hop", gl: "us", hl: "en" });
2283
+ */
2284
+ videos(input, options) {
2285
+ return this._core.run("google.videos", input, options);
2286
+ }
1777
2287
  };
1778
2288
 
1779
2289
  // src/generated/platforms/google_ads.ts
@@ -1785,7 +2295,7 @@ var GoogleAdsNamespace = class {
1785
2295
  /**
1786
2296
  * Google Ads Ad Details
1787
2297
  *
1788
- * Look up a single Google Ads Transparency Center creative by URL and get its format, run dates, impression range, regions, and creative variations as clean JSON, billed per request in USD.
2298
+ * Look up a single Google Ads Transparency Center creative by URL and get its format, run dates, impression range, regions, and creative variations as clean JSON.
1789
2299
  *
1790
2300
  * Price: $0.002 per request.
1791
2301
  *
@@ -1798,7 +2308,7 @@ var GoogleAdsNamespace = class {
1798
2308
  /**
1799
2309
  * Google Ads Advertiser Search
1800
2310
  *
1801
- * Search the Google Ads Transparency Center for advertisers by keyword and get matching advertiser IDs, regions, and estimated ad counts as clean JSON, billed per request in USD.
2311
+ * Search the Google Ads Transparency Center for advertisers by keyword and get matching advertiser IDs, regions, and estimated ad counts as clean JSON.
1802
2312
  *
1803
2313
  * Price: $0.002 per request.
1804
2314
  *
@@ -1811,7 +2321,7 @@ var GoogleAdsNamespace = class {
1811
2321
  /**
1812
2322
  * Google Ads Company Ads
1813
2323
  *
1814
- * List the ads a company is running from the Google Ads Transparency Center by domain or advertiser ID - creative ID, format, ad URL, and first/last shown dates - with cursor pagination, billed per request in USD.
2324
+ * List the ads a company is running from the Google Ads Transparency Center by domain or advertiser ID - creative ID, format, ad URL, and first/last shown dates - with cursor pagination.
1815
2325
  *
1816
2326
  * Price: $0.002 per request.
1817
2327
  *
@@ -1840,9 +2350,9 @@ var GoogleAdsNamespace = class {
1840
2350
  /**
1841
2351
  * Google Ads Transparency
1842
2352
  *
1843
- * Pull the ads an advertiser is currently running from the Google Ads Transparency Center - creative details, formats, and run dates - as clean JSON, billed per request in USD.
2353
+ * Pull the ads an advertiser is currently running from the Google Ads Transparency Center - creative details, formats, and run dates - as clean JSON.
1844
2354
  *
1845
- * Price: $0.00005 per request plus $0.0013 per result.
2355
+ * Price: $0.00005 per request plus $0.0013 per result (maximum $0.02605).
1846
2356
  *
1847
2357
  * @example
1848
2358
  * const res = await client.googleAds.search({ url: "https://adstransparency.google.com/?region=US&domain=nike.com", limit: 3 });
@@ -1861,9 +2371,9 @@ var GoogleFinanceNamespace = class {
1861
2371
  /**
1862
2372
  * Google Finance Quote
1863
2373
  *
1864
- * Fetch a live quote for any stock, index, ETF, mutual fund, currency pair, or crypto symbol: name, current price, the absolute and percent change on the day, quote currency, exchange and market state, plus intraday and reference figures (open, day high/low, previous close, volume, market cap, and the 52-week range) with transparent per-request USD pricing.
2374
+ * Fetch a live quote for any stock, index, ETF, mutual fund, currency pair, or crypto symbol: name, current price, the absolute and percent change on the day, quote currency, exchange and market state, plus intraday and reference figures (open, day high/low, previous close, volume, market cap, and the 52-week range).
1865
2375
  *
1866
- * Price: $0.0005 per request plus $0.0015 per result.
2376
+ * Price: $0.0005 per request plus $0.0015 per result (maximum $0.002).
1867
2377
  *
1868
2378
  * @example
1869
2379
  * const res = await client.googleFinance.quote({ symbol: "AAPL:NASDAQ" });
@@ -1882,7 +2392,7 @@ var GoogleShoppingNamespace = class {
1882
2392
  /**
1883
2393
  * Google Shopping Search
1884
2394
  *
1885
- * Search Google Shopping by keyword and get up to 10 product offers - title, price, store, rating, and link - localized by country and language, at a flat per-request USD price.
2395
+ * Search Google Shopping by keyword and get up to 10 product offers - title, price, store, rating, and link - localized by country and language.
1886
2396
  *
1887
2397
  * Price: $0.01625 per request.
1888
2398
  *
@@ -1903,7 +2413,7 @@ var HackernewsNamespace = class {
1903
2413
  /**
1904
2414
  * Hacker News Profile
1905
2415
  *
1906
- * Get a Hacker News user's public profile by username - karma, bio, and account details as clean JSON, billed per request in USD.
2416
+ * Get a Hacker News user's public profile by username - karma, bio, and account details as clean JSON.
1907
2417
  *
1908
2418
  * Price: $0.00325 per request.
1909
2419
  *
@@ -1916,7 +2426,7 @@ var HackernewsNamespace = class {
1916
2426
  /**
1917
2427
  * Hacker News Search
1918
2428
  *
1919
- * Search Hacker News by keyword - matching stories with title, link, author, points, and comment count as clean JSON, billed per request in USD.
2429
+ * Search Hacker News by keyword - matching stories with title, link, author, points, and comment count as clean JSON.
1920
2430
  *
1921
2431
  * Price: $0.00325 per request.
1922
2432
  *
@@ -1929,7 +2439,7 @@ var HackernewsNamespace = class {
1929
2439
  /**
1930
2440
  * Hacker News Story
1931
2441
  *
1932
- * Get a Hacker News story by id - title, link, author, points, and comment count as clean JSON, billed per request in USD.
2442
+ * Get a Hacker News story by id - title, link, author, points, and comment count as clean JSON.
1933
2443
  *
1934
2444
  * Price: $0.00325 per request.
1935
2445
  *
@@ -1942,7 +2452,7 @@ var HackernewsNamespace = class {
1942
2452
  /**
1943
2453
  * Hacker News Story Comments
1944
2454
  *
1945
- * List the comments on a Hacker News story by id - text, author, and timestamp as clean JSON, billed per request in USD.
2455
+ * List the comments on a Hacker News story by id - text, author, and timestamp as clean JSON.
1946
2456
  *
1947
2457
  * Price: $0.00325 per request.
1948
2458
  *
@@ -1963,9 +2473,9 @@ var IndeedNamespace = class {
1963
2473
  /**
1964
2474
  * Indeed Jobs
1965
2475
  *
1966
- * Search Indeed job listings by keyword, location, and country - up to 20 normalized job records per request at a flat USD price.
2476
+ * Search Indeed job listings by keyword, location, and country - up to 20 normalized job records per request.
1967
2477
  *
1968
- * Price: $0.0008 per request plus $0.00008 per result.
2478
+ * Price: $0.0008 per request plus $0.00008 per result (maximum $0.0024).
1969
2479
  *
1970
2480
  * @example
1971
2481
  * const res = await client.indeed.jobs({ query: "data analyst", limit: 3, location: "Austin, TX" });
@@ -2039,7 +2549,7 @@ var InstagramNamespace = class {
2039
2549
  /**
2040
2550
  * Instagram Followers
2041
2551
  *
2042
- * List the followers of any public Instagram account by username - follower usernames, names, and profile details - at a flat per-request USD price.
2552
+ * List the followers of any public Instagram account by username - follower usernames, names, and profile details.
2043
2553
  *
2044
2554
  * Price: $0.01625 per request.
2045
2555
  *
@@ -2068,7 +2578,7 @@ var InstagramNamespace = class {
2068
2578
  /**
2069
2579
  * Instagram Following
2070
2580
  *
2071
- * List the accounts a public Instagram user follows - usernames, names, and profile details - at a flat per-request USD price.
2581
+ * List the accounts a public Instagram user follows - usernames, names, and profile details.
2072
2582
  *
2073
2583
  * Price: $0.01625 per request.
2074
2584
  *
@@ -2097,9 +2607,9 @@ var InstagramNamespace = class {
2097
2607
  /**
2098
2608
  * Instagram Hashtag Analytics
2099
2609
  *
2100
- * Get analytics for any Instagram hashtag - total post count, related hashtags, and usage signals - normalized and priced per request in USD.
2610
+ * Get analytics for any Instagram hashtag - total post count, related hashtags, and usage signals - normalized.
2101
2611
  *
2102
- * Price: $0.001 per request plus $0.0017 per result.
2612
+ * Price: $0.001 per request plus $0.0017 per result (maximum $0.035).
2103
2613
  *
2104
2614
  * @example
2105
2615
  * const res = await client.instagram.hashtagAnalytics({ hashtag: "travel", limit: 5 });
@@ -2175,9 +2685,9 @@ var InstagramNamespace = class {
2175
2685
  /**
2176
2686
  * Instagram Reel Transcript
2177
2687
  *
2178
- * Turn any public Instagram reel or video post into a full speech transcript, with optional word-level timestamps - priced per request in USD.
2688
+ * Turn any public Instagram reel or video post into a full speech transcript, with optional word-level timestamps.
2179
2689
  *
2180
- * Price: $0.005 per request plus $0.02 per result.
2690
+ * Price: $0.005 per request plus $0.02 per result (maximum $0.025).
2181
2691
  *
2182
2692
  * @example
2183
2693
  * const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/", wordTimestamps: false });
@@ -2201,7 +2711,7 @@ var InstagramNamespace = class {
2201
2711
  /**
2202
2712
  * Instagram Search
2203
2713
  *
2204
- * Search Instagram for users, hashtags, or places by keyword and get matching results with names, counts, and links - flat per-request USD pricing.
2714
+ * Search Instagram for users, hashtags, or places by keyword and get matching results with names, counts, and links.
2205
2715
  *
2206
2716
  * Price: $0.00325 per request.
2207
2717
  *
@@ -2256,9 +2766,9 @@ var InstagramNamespace = class {
2256
2766
  /**
2257
2767
  * Instagram Stories (full)
2258
2768
  *
2259
- * Fetch public Instagram accounts' currently live stories with the full record - media (image and video), type, dimensions, posting time, 24h expiry, and caption. Priced per username (a flat run fee is shared across the batch), so request several at once to lower the cost per account. Up to 100 usernames per request.
2769
+ * Fetch public Instagram accounts' currently live stories with the full record - media (image and video), type, dimensions, posting time, 24h expiry, and caption. Up to 100 usernames per request.
2260
2770
  *
2261
- * Price: $0.099 per request plus $0.003 per username.
2771
+ * Price: $0.099 per request plus $0.003 per username (maximum $0.102).
2262
2772
  *
2263
2773
  * @example
2264
2774
  * const res = await client.instagram.storiesFull({ usernames: ["natgeo"] });
@@ -2374,7 +2884,7 @@ var LinkedinNamespace = class {
2374
2884
  /**
2375
2885
  * LinkedIn Ad Details
2376
2886
  *
2377
- * Look up a single LinkedIn Ad Library ad by URL and get the advertiser, headline, creative text, format, CTA, targeting, run dates, and impressions as clean JSON, billed per request in USD.
2887
+ * Look up a single LinkedIn Ad Library ad by URL and get the advertiser, headline, creative text, format, CTA, targeting, run dates, and impressions as clean JSON.
2378
2888
  *
2379
2889
  * Price: $0.002 per request.
2380
2890
  *
@@ -2387,9 +2897,9 @@ var LinkedinNamespace = class {
2387
2897
  /**
2388
2898
  * LinkedIn Ads Library
2389
2899
  *
2390
- * Search the LinkedIn Ad Library by search URL and list the matching ads (advertiser, creative text, format), priced per request in USD.
2900
+ * Search the LinkedIn Ad Library by search URL and list the matching ads (advertiser, creative text, format).
2391
2901
  *
2392
- * Price: $0.00005 per request plus $0.0015 per result.
2902
+ * Price: $0.00005 per request plus $0.0015 per result (maximum $0.03005).
2393
2903
  *
2394
2904
  * @example
2395
2905
  * const res = await client.linkedin.ads({ url: "https://www.linkedin.com/company/stripe", limit: 3 });
@@ -2400,7 +2910,7 @@ var LinkedinNamespace = class {
2400
2910
  /**
2401
2911
  * LinkedIn Ad Search
2402
2912
  *
2403
- * Search the LinkedIn Ad Library by company or keyword and list matching ads - advertiser, headline, creative text, format, CTA, and run dates - with pagination, billed per request in USD.
2913
+ * Search the LinkedIn Ad Library by company or keyword and list matching ads - advertiser, headline, creative text, format, CTA, and run dates - with pagination.
2404
2914
  *
2405
2915
  * Price: $0.002 per request.
2406
2916
  *
@@ -2413,9 +2923,9 @@ var LinkedinNamespace = class {
2413
2923
  /**
2414
2924
  * LinkedIn Company
2415
2925
  *
2416
- * Fetch a LinkedIn company page (description, employee count, industry, website, logo) by company URL, normalized across providers with transparent failover.
2926
+ * Fetch a full LinkedIn company page by URL: name, description, industry, employee count and range, follower count, founded year, headquarters and office locations, funding data, tagline, logo, website, and specialities.
2417
2927
  *
2418
- * Price: $0.002 per request.
2928
+ * Price: $0.004 per request plus $0 per result (maximum $0.004).
2419
2929
  *
2420
2930
  * @example
2421
2931
  * const res = await client.linkedin.company({ url: "https://www.linkedin.com/company/stripe" });
@@ -2426,9 +2936,9 @@ var LinkedinNamespace = class {
2426
2936
  /**
2427
2937
  * LinkedIn Company Employees
2428
2938
  *
2429
- * List the employees of a LinkedIn company by name or company URL, with optional job-title filtering and transparent per-request USD pricing.
2939
+ * List the employees of a LinkedIn company by name or company URL, with optional job-title filtering.
2430
2940
  *
2431
- * Price: $0.01 per result.
2941
+ * Price: $0 per request plus $0.01 per result (maximum $0.1).
2432
2942
  *
2433
2943
  * @example
2434
2944
  * const res = await client.linkedin.companyEmployees({ company: "stripe", limit: 3 });
@@ -2439,22 +2949,48 @@ var LinkedinNamespace = class {
2439
2949
  /**
2440
2950
  * LinkedIn Company Posts
2441
2951
  *
2442
- * List a LinkedIn company page's recent posts by URL with page pagination (text, link, publish date), normalized across providers.
2952
+ * List a LinkedIn company page's recent posts by URL: full text, canonical link, publish date, author, engagement counts with a per-reaction breakdown, and attached media.
2443
2953
  *
2444
- * Price: $0.002 per request.
2954
+ * Price: $0.00005 per request plus $0.00175 per result (maximum $0.08755).
2445
2955
  *
2446
2956
  * @example
2447
- * const res = await client.linkedin.companyPosts({ url: "https://www.linkedin.com/company/stripe" });
2957
+ * const res = await client.linkedin.companyPosts({ url: "https://www.linkedin.com/company/stripe", limit: 10 });
2448
2958
  */
2449
2959
  companyPosts(input, options) {
2450
2960
  return this._core.run("linkedin.company_posts", input, options);
2451
2961
  }
2962
+ /**
2963
+ * LinkedIn Company Posts (basic)
2964
+ *
2965
+ * Post text and link only. No engagement counts, author details, media, or reaction breakdown - for those use linkedin.company_posts.
2966
+ *
2967
+ * Price: $0.002 per request.
2968
+ *
2969
+ * @example
2970
+ * const res = await client.linkedin.companyPostsThin({ url: "https://www.linkedin.com/company/stripe" });
2971
+ */
2972
+ companyPostsThin(input, options) {
2973
+ return this._core.run("linkedin.company_posts_thin", input, options);
2974
+ }
2975
+ /**
2976
+ * LinkedIn Company (basic)
2977
+ *
2978
+ * Basic company: name, description, employee count, industry, logo, website, tagline. No follower count, founded year, office locations, or funding data - for those use linkedin.company.
2979
+ *
2980
+ * Price: $0.002 per request.
2981
+ *
2982
+ * @example
2983
+ * const res = await client.linkedin.companyThin({ url: "https://www.linkedin.com/company/stripe" });
2984
+ */
2985
+ companyThin(input, options) {
2986
+ return this._core.run("linkedin.company_thin", input, options);
2987
+ }
2452
2988
  /**
2453
2989
  * LinkedIn Email Finder
2454
2990
  *
2455
- * Find the verified work email behind a LinkedIn profile URL or ID, with transparent per-request USD pricing.
2991
+ * Find the deliverability-validated work email behind a LinkedIn profile URL or public ID. Returns each discovered email with its deliverability, validation status, and quality score, plus the person's name and headline.
2456
2992
  *
2457
- * Price: $0.0007 per result.
2993
+ * Price: $0.01 per request plus $0 per result (maximum $0.01).
2458
2994
  *
2459
2995
  * @example
2460
2996
  * const res = await client.linkedin.email({ profileUrl: "https://www.linkedin.com/in/satyanadella" });
@@ -2465,16 +3001,29 @@ var LinkedinNamespace = class {
2465
3001
  /**
2466
3002
  * LinkedIn Jobs
2467
3003
  *
2468
- * Search LinkedIn job listings by title and location - up to 25 normalized job records per request at a flat USD price.
3004
+ * Search LinkedIn job listings by title and location - full records with description, salary, applicant count, seniority, company details, and benefits. Up to 25 jobs per request.
2469
3005
  *
2470
- * Price: $0.001 per request.
3006
+ * Price: $0.001 per request plus $0.001 per result (maximum $0.026).
2471
3007
  *
2472
3008
  * @example
2473
- * const res = await client.linkedin.jobs({ query: "software engineer", limit: 3, location: "San Francisco" });
3009
+ * const res = await client.linkedin.jobs({ query: "software engineer", limit: 3, location: "United States", workplaceType: "remote" });
2474
3010
  */
2475
3011
  jobs(input, options) {
2476
3012
  return this._core.run("linkedin.jobs", input, options);
2477
3013
  }
3014
+ /**
3015
+ * LinkedIn Jobs (index)
3016
+ *
3017
+ * Cheap job index: title, company, location, posted date, URL. No description, salary, applicant counts, or seniority - for those use linkedin.jobs.
3018
+ *
3019
+ * Price: $0.001 per request.
3020
+ *
3021
+ * @example
3022
+ * const res = await client.linkedin.jobsThin({ query: "software engineer", limit: 3, location: "United States", workplaceType: "remote" });
3023
+ */
3024
+ jobsThin(input, options) {
3025
+ return this._core.run("linkedin.jobs_thin", input, options);
3026
+ }
2478
3027
  /**
2479
3028
  * LinkedIn Post
2480
3029
  *
@@ -2489,37 +3038,76 @@ var LinkedinNamespace = class {
2489
3038
  return this._core.run("linkedin.post", input, options);
2490
3039
  }
2491
3040
  /**
2492
- * LinkedIn Post Transcript
3041
+ * LinkedIn Post Comments
2493
3042
  *
2494
- * Get the spoken transcript of a LinkedIn video post by URL, with transparent per-request USD pricing.
3043
+ * List comments on a LinkedIn post - full text, commenter name/URL/job title, timestamps, and engagement.
2495
3044
  *
2496
- * Price: $0.002 per request.
3045
+ * Price: $0 per request plus $0.002 per result (maximum $0.2).
2497
3046
  *
2498
3047
  * @example
2499
- * const res = await client.linkedin.postTranscript({ url: "https://www.linkedin.com/posts/artificial-analysis_gemini-35-flash-is-a-step-forward-for-google-activity-7465082408409870337-4Pm-" });
3048
+ * const res = await client.linkedin.postComments({ url: "https://www.linkedin.com/posts/stripe_philip-kl%C3%B6ckner-in-conversation-with-conor-activity-7477791740645564416-tIbZ", limit: 10 });
2500
3049
  */
2501
- postTranscript(input, options) {
2502
- return this._core.run("linkedin.post_transcript", input, options);
3050
+ postComments(input, options) {
3051
+ return this._core.run("linkedin.post_comments", input, options);
2503
3052
  }
2504
3053
  /**
2505
- * LinkedIn Profile
3054
+ * LinkedIn Post Reactions
2506
3055
  *
2507
- * Fetch a LinkedIn member's public profile by URL: name, location, followers, about, plus experience, education, recent posts, and published articles.
3056
+ * List who reacted to a LinkedIn post - reactor name, profile URL, job title, and reaction type. Lead-gen grade.
2508
3057
  *
2509
- * Price: $0.002 per request.
3058
+ * Price: $0 per request plus $0.002 per result (maximum $0.2).
2510
3059
  *
2511
3060
  * @example
2512
- * const res = await client.linkedin.profile({ url: "https://www.linkedin.com/in/williamhgates" });
3061
+ * const res = await client.linkedin.postReactions({ url: "https://www.linkedin.com/posts/satyanadella_today-were-bringing-skills-to-copilot-for-activity-7475945433668694017--kvG", limit: 5 });
2513
3062
  */
2514
- profile(input, options) {
2515
- return this._core.run("linkedin.profile", input, options);
3063
+ postReactions(input, options) {
3064
+ return this._core.run("linkedin.post_reactions", input, options);
2516
3065
  }
2517
3066
  /**
2518
- * LinkedIn Company Search
3067
+ * LinkedIn Post Transcript
2519
3068
  *
2520
- * Search LinkedIn companies by keyword with optional location filtering, returning normalized company records with transparent per-request USD pricing.
3069
+ * Get the spoken transcript of a LinkedIn video post by URL.
2521
3070
  *
2522
- * Price: $0.001 per request plus $0.004 per result.
3071
+ * Price: $0.002 per request.
3072
+ *
3073
+ * @example
3074
+ * const res = await client.linkedin.postTranscript({ url: "https://www.linkedin.com/posts/artificial-analysis_gemini-35-flash-is-a-step-forward-for-google-activity-7465082408409870337-4Pm-" });
3075
+ */
3076
+ postTranscript(input, options) {
3077
+ return this._core.run("linkedin.post_transcript", input, options);
3078
+ }
3079
+ /**
3080
+ * LinkedIn Profile
3081
+ *
3082
+ * Fetch a rich LinkedIn member profile by URL: name, headline, avatar, location, connections and followers, current position, and full work experience with job titles, descriptions, dates, employment/workplace type, and per-role skills, plus education, skills, certifications, honors and awards, languages, projects, publications, and verified/premium/open-to-work flags.
3083
+ *
3084
+ * Price: $0.004 per request plus $0 per result (maximum $0.004).
3085
+ *
3086
+ * @example
3087
+ * const res = await client.linkedin.profile({ url: "https://www.linkedin.com/in/williamhgates" });
3088
+ */
3089
+ profile(input, options) {
3090
+ return this._core.run("linkedin.profile", input, options);
3091
+ }
3092
+ /**
3093
+ * LinkedIn Profile (basic)
3094
+ *
3095
+ * Lightweight profile: name, avatar, location, followers, and a basic experience/education list (company + dates only, no job titles, descriptions, or skills; past companies may be redacted). For full experience detail, skills, certifications, connections, and verified flags use linkedin.profile.
3096
+ *
3097
+ * Price: $0.002 per request.
3098
+ *
3099
+ * @example
3100
+ * const res = await client.linkedin.profileThin({ url: "https://www.linkedin.com/in/williamhgates" });
3101
+ */
3102
+ profileThin(input, options) {
3103
+ return this._core.run("linkedin.profile_thin", input, options);
3104
+ }
3105
+ /**
3106
+ * LinkedIn Company Search
3107
+ *
3108
+ * Search LinkedIn companies by keyword with optional location filtering, returning normalized company records.
3109
+ *
3110
+ * Price: $0.001 per request plus $0.004 per result (maximum $0.081).
2523
3111
  *
2524
3112
  * @example
2525
3113
  * const res = await client.linkedin.searchCompanies({ query: "fintech", limit: 3 });
@@ -2543,16 +3131,42 @@ var LinkedinNamespace = class {
2543
3131
  /**
2544
3132
  * LinkedIn Profile Search
2545
3133
  *
2546
- * Search LinkedIn profiles by keyword with optional location and job-title filters. Each match returns a full profile record: name, headline, location, current position, work experience, and education, plus the profile URL, handle, and id. Flat USD price per request.
3134
+ * Search LinkedIn profiles by keyword with optional location and job-title filters. Each match returns a full profile record: name, headline, location, current position, work experience, education, and skills, plus the profile URL, handle, and id. For a cheaper name/headline/URL-only search use linkedin.search_profiles_thin; add emails with linkedin.search_profiles_email.
2547
3135
  *
2548
- * Price: $0.0325 per request.
3136
+ * Price: $0.08 per request plus $0.004 per result (maximum $0.18).
2549
3137
  *
2550
3138
  * @example
2551
- * const res = await client.linkedin.searchProfiles({ query: "recruiter", limit: 3 });
3139
+ * const res = await client.linkedin.searchProfiles({ query: "engineer", currentCompanies: ["Google"], limit: 3 });
2552
3140
  */
2553
3141
  searchProfiles(input, options) {
2554
3142
  return this._core.run("linkedin.search_profiles", input, options);
2555
3143
  }
3144
+ /**
3145
+ * LinkedIn Profile Search + Email
3146
+ *
3147
+ * People search returning a full profile AND a verified work email for each hit. Search LinkedIn profiles by keyword with optional location and job-title filters; each match returns the full profile record (name, headline, location, current position, work experience, education, and skills, plus the profile URL, handle, and id) together with an emails array carrying the discovered work email and its deliverability. For a full profile without email use linkedin.search_profiles; for a cheaper name/headline/URL-only search use linkedin.search_profiles_thin.
3148
+ *
3149
+ * Price: $0.08 per request plus $0.009 per result (maximum $0.305).
3150
+ *
3151
+ * @example
3152
+ * const res = await client.linkedin.searchProfilesEmail({ query: "founder", companyHeadcount: ["B"], limit: 5 });
3153
+ */
3154
+ searchProfilesEmail(input, options) {
3155
+ return this._core.run("linkedin.search_profiles_email", input, options);
3156
+ }
3157
+ /**
3158
+ * LinkedIn Profile Search (basic)
3159
+ *
3160
+ * Cheap people search: name/handle, headline, VANITY profile URL, location. No full profile or email - for full profiles per hit use linkedin.search_profiles, add emails with linkedin.search_profiles_email.
3161
+ *
3162
+ * Price: $0.0325 per request.
3163
+ *
3164
+ * @example
3165
+ * const res = await client.linkedin.searchProfilesThin({ query: "recruiter" });
3166
+ */
3167
+ searchProfilesThin(input, options) {
3168
+ return this._core.run("linkedin.search_profiles_thin", input, options);
3169
+ }
2556
3170
  };
2557
3171
 
2558
3172
  // src/generated/platforms/maps.ts
@@ -2564,12 +3178,12 @@ var MapsNamespace = class {
2564
3178
  /**
2565
3179
  * Google Maps Contacts
2566
3180
  *
2567
- * Search Google Maps for businesses and enrich each result with contact details - emails, phones, and social profiles from their websites - up to 20 records per request.
3181
+ * Search Google Maps for businesses and enrich each result with contact details (emails, phones, and social profiles from their websites), up to 20 records per request.
2568
3182
  *
2569
- * Price: $0.00005 per request plus $0.003 per result.
3183
+ * Price: $0.00005 per request plus $0.003 per result (maximum $0.06005).
2570
3184
  *
2571
3185
  * @example
2572
- * const res = await client.maps.contacts({ location: "Austin, TX", query: "coffee shop", limit: 3 });
3186
+ * const res = await client.maps.contacts({ location: "Austin, TX", query: "coffee shop", limit: 3, placeMinimumStars: "four", website: "withWebsite" });
2573
3187
  */
2574
3188
  contacts(input, options) {
2575
3189
  return this._core.run("maps.contacts", input, options);
@@ -2577,12 +3191,12 @@ var MapsNamespace = class {
2577
3191
  /**
2578
3192
  * Google Maps Place Lookup
2579
3193
  *
2580
- * Look up a place on Google Maps by name or search query (optionally scoped to a location) and get the best-matching place with full details - address, phone, website, rating, hours, and coordinates - as normalized JSON priced per request in USD.
3194
+ * Look up a place on Google Maps by name or search query (optionally scoped to a location) and get the best-matching place with full details - address, phone, website, rating, hours, and coordinates - as normalized JSON.
2581
3195
  *
2582
- * Price: $0.003 per request plus $0.005 per result.
3196
+ * Price: $0.003 per request plus $0.005 per result (maximum $0.009).
2583
3197
  *
2584
3198
  * @example
2585
- * const res = await client.maps.place({ query: "Blue Bottle Coffee", location: "San Francisco, CA" });
3199
+ * const res = await client.maps.place({ query: "Blue Bottle Coffee", location: "San Francisco, CA", website: "withWebsite" });
2586
3200
  */
2587
3201
  place(input, options) {
2588
3202
  return this._core.run("maps.place", input, options);
@@ -2590,12 +3204,12 @@ var MapsNamespace = class {
2590
3204
  /**
2591
3205
  * Google Maps Reviews
2592
3206
  *
2593
- * Fetch up to 100 Google Maps reviews for a place by place ID, sorted the way you need, in one flat-priced normalized response.
3207
+ * Fetch up to 100 Google Maps reviews for a place by place ID, sorted the way you need, in one normalized response.
2594
3208
  *
2595
- * Price: $0.00005 per request plus $0.0004 per result.
3209
+ * Price: $0.00005 per request plus $0.0004 per result (maximum $0.04005).
2596
3210
  *
2597
3211
  * @example
2598
- * const res = await client.maps.reviews({ placeId: "ChIJN1t_tDeuEmsRUsoyG83frY4", limit: 3 });
3212
+ * const res = await client.maps.reviews({ placeId: "ChIJN1t_tDeuEmsRUsoyG83frY4", limit: 3, postedLimit: "year" });
2599
3213
  */
2600
3214
  reviews(input, options) {
2601
3215
  return this._core.run("maps.reviews", input, options);
@@ -2603,12 +3217,12 @@ var MapsNamespace = class {
2603
3217
  /**
2604
3218
  * Google Maps Search
2605
3219
  *
2606
- * Search Google Maps for places matching a query and location - up to 20 normalized place records with ratings, addresses, and contact basics per request.
3220
+ * Search Google Maps for places matching a query and location: up to 20 normalized place records with ratings, addresses, and contact basics per request.
2607
3221
  *
2608
- * Price: $0.00005 per request plus $0.003 per result.
3222
+ * Price: $0.00005 per request plus $0.003 per result (maximum $0.06005).
2609
3223
  *
2610
3224
  * @example
2611
- * const res = await client.maps.search({ location: "Austin, TX", query: "coffee", limit: 3 });
3225
+ * const res = await client.maps.search({ location: "Austin, TX", query: "coffee", limit: 3, placeMinimumStars: "four", website: "withWebsite" });
2612
3226
  */
2613
3227
  search(input, options) {
2614
3228
  return this._core.run("maps.search", input, options);
@@ -2624,7 +3238,7 @@ var PandaexpressNamespace = class {
2624
3238
  /**
2625
3239
  * Panda Express Locations
2626
3240
  *
2627
- * Find Panda Express restaurants near a latitude/longitude, sorted by distance, with address, phone, hours availability, and pickup/delivery support. One call, billed per request in real dollars.
3241
+ * Find Panda Express restaurants near a latitude/longitude, sorted by distance, with address, phone, hours availability, and pickup/delivery support.
2628
3242
  *
2629
3243
  * Price: $0.0009 per request.
2630
3244
  *
@@ -2637,7 +3251,7 @@ var PandaexpressNamespace = class {
2637
3251
  /**
2638
3252
  * Panda Express Menu
2639
3253
  *
2640
- * Get the live menu for a Panda Express restaurant by id: categories with item names, descriptions, and USD prices. Pair with Panda Express Locations to resolve a restaurant id. One call, billed per request in real dollars.
3254
+ * Get the live menu for a Panda Express restaurant by id: categories with item names, descriptions, and USD prices. Pair with Panda Express Locations to resolve a restaurant id.
2641
3255
  *
2642
3256
  * Price: $0.0009 per request.
2643
3257
  *
@@ -2650,7 +3264,7 @@ var PandaexpressNamespace = class {
2650
3264
  /**
2651
3265
  * Panda Express Nutrition
2652
3266
  *
2653
- * Look up official Panda Express nutrition facts by item name: serving size, calories, fat, cholesterol, sodium, carbs, fiber, sugars, and protein. One call, billed per request in real dollars.
3267
+ * Look up official Panda Express nutrition facts by item name: serving size, calories, fat, cholesterol, sodium, carbs, fiber, sugars, and protein.
2654
3268
  *
2655
3269
  * Price: $0.006 per request.
2656
3270
  *
@@ -2673,7 +3287,7 @@ var PersonNamespace = class {
2673
3287
  *
2674
3288
  * Skip-trace a person in the US by name, address, phone, or email and get back identity, address, and contact records in normalized JSON.
2675
3289
  *
2676
- * Price: $0.007 per result.
3290
+ * Price: $0 per request plus $0.007 per result (maximum $0.007).
2677
3291
  *
2678
3292
  * @example
2679
3293
  * const res = await client.person.skipTrace({ address: "123 Main St, Austin, TX 78701", name: "John Smith" });
@@ -2692,7 +3306,7 @@ var PinterestNamespace = class {
2692
3306
  /**
2693
3307
  * Pinterest Search
2694
3308
  *
2695
- * Search Pinterest by keyword and get pin, video, board, or profile results with titles, images, and links - flat per-request USD pricing.
3309
+ * Search Pinterest by keyword and get pin, video, board, or profile results with titles, images, and links.
2696
3310
  *
2697
3311
  * Price: $0.00325 per request.
2698
3312
  *
@@ -2713,9 +3327,9 @@ var PlaystoreNamespace = class {
2713
3327
  /**
2714
3328
  * Google Play Reviews
2715
3329
  *
2716
- * Fetch Google Play reviews for any Android app by package name or store URL - ratings, review text, dates, and helpfulness votes, billed per request in USD.
3330
+ * Fetch Google Play reviews for any Android app by package name or store URL - ratings, review text, dates, and helpfulness votes.
2717
3331
  *
2718
- * Price: $0.00011 per result.
3332
+ * Price: $0 per request plus $0.00011 per result (maximum $0.011).
2719
3333
  *
2720
3334
  * @example
2721
3335
  * const res = await client.playstore.reviews({ appId: "com.whatsapp", limit: 3 });
@@ -2734,9 +3348,9 @@ var PolymarketNamespace = class {
2734
3348
  /**
2735
3349
  * Polymarket Markets
2736
3350
  *
2737
- * Discover Polymarket prediction markets - question, outcome prices, volume, liquidity, and end dates - by keyword or sorted by activity, as normalized JSON billed per request in USD.
3351
+ * Discover Polymarket prediction markets - question, outcome prices, volume, liquidity, and end dates - by keyword or sorted by activity, as normalized JSON.
2738
3352
  *
2739
- * Price: $0.105 per request plus $0.0006 per result.
3353
+ * Price: $0.105 per request plus $0.0006 per result (maximum $0.12).
2740
3354
  *
2741
3355
  * @example
2742
3356
  * const res = await client.polymarket.markets({ query: "election", limit: 10 });
@@ -2755,12 +3369,12 @@ var RealtorNamespace = class {
2755
3369
  /**
2756
3370
  * Realtor.com Search
2757
3371
  *
2758
- * Search Realtor.com listings by location with optional price filters and get property records (price, address, beds, baths) as normalized JSON, priced per request in USD.
3372
+ * Search Realtor.com listings by location with optional price, property-type, beds/baths, listing-status, and keyword filters and get property records (price, address, beds, baths) as normalized JSON.
2759
3373
  *
2760
- * Price: $0.005 per request plus $0.0015 per result.
3374
+ * Price: $0.005 per request plus $0.0015 per result (maximum $0.0425).
2761
3375
  *
2762
3376
  * @example
2763
- * const res = await client.realtor.search({ location: "Austin, TX", limit: 3 });
3377
+ * const res = await client.realtor.search({ location: "Austin, TX", bedsMin: 4, limit: 3, propertyTypes: ["single_family"], searchStatuses: ["pending"] });
2764
3378
  */
2765
3379
  search(input, options) {
2766
3380
  return this._core.run("realtor.search", input, options);
@@ -2784,11 +3398,7 @@ var RedditNamespace = class {
2784
3398
  * const res = await client.reddit.postComments({ url: "https://www.reddit.com/r/IAmA/comments/z1c9z/i_am_barack_obama_president_of_the_united_states/" });
2785
3399
  */
2786
3400
  postComments(input, options) {
2787
- return this._core.run(
2788
- "reddit.post_comments",
2789
- input,
2790
- options
2791
- );
3401
+ return this._core.run("reddit.post_comments", input, options);
2792
3402
  }
2793
3403
  /**
2794
3404
  * Reddit Post Transcript
@@ -2814,11 +3424,7 @@ var RedditNamespace = class {
2814
3424
  * const res = await client.reddit.search({ query: "mechanical keyboard" });
2815
3425
  */
2816
3426
  search(input, options) {
2817
- return this._core.run(
2818
- "reddit.search",
2819
- input,
2820
- options
2821
- );
3427
+ return this._core.run("reddit.search", input, options);
2822
3428
  }
2823
3429
  /**
2824
3430
  * Iterate every result of Reddit Search across pages.
@@ -2832,7 +3438,7 @@ var RedditNamespace = class {
2832
3438
  "reddit.search",
2833
3439
  input,
2834
3440
  "posts",
2835
- true,
3441
+ false,
2836
3442
  options
2837
3443
  );
2838
3444
  }
@@ -2860,11 +3466,7 @@ var RedditNamespace = class {
2860
3466
  * const res = await client.reddit.subredditPosts({ subreddit: "programming", limit: 5 });
2861
3467
  */
2862
3468
  subredditPosts(input, options) {
2863
- return this._core.run(
2864
- "reddit.subreddit_posts",
2865
- input,
2866
- options
2867
- );
3469
+ return this._core.run("reddit.subreddit_posts", input, options);
2868
3470
  }
2869
3471
  /**
2870
3472
  * Reddit Subreddit Search
@@ -2906,9 +3508,9 @@ var RedfinNamespace = class {
2906
3508
  /**
2907
3509
  * Redfin Search
2908
3510
  *
2909
- * Run a Redfin map search by URL and get matching home listings (price, address, beds, baths, status) as normalized JSON with flat per-request USD pricing.
3511
+ * Run a Redfin map search by URL and get matching home listings (price, address, beds, baths, status) as normalized JSON.
2910
3512
  *
2911
- * Price: $0.0027 per request plus $0.00043 per result.
3513
+ * Price: $0.0027 per request plus $0.00043 per result (maximum $0.01345).
2912
3514
  *
2913
3515
  * @example
2914
3516
  * const res = await client.redfin.search({ url: "https://www.redfin.com/city/30818/TX/Austin", limit: 3 });
@@ -3077,12 +3679,12 @@ var SecNamespace = class {
3077
3679
  /**
3078
3680
  * SEC EDGAR Filings
3079
3681
  *
3080
- * List a public company's SEC EDGAR filings - form type, filing date, accession number, and document links - by ticker, company name, or CIK, with optional form-type and date filters, billed per request in USD.
3682
+ * List a public company's SEC EDGAR filings - form type, filing date, accession number, and document links - by ticker, company name, or CIK, with optional form-type and date filters.
3081
3683
  *
3082
- * Price: $0.002 per request plus $0.0004 per result.
3684
+ * Price: $0.002 per request plus $0.0004 per result (maximum $0.012).
3083
3685
  *
3084
3686
  * @example
3085
- * const res = await client.sec.filings({ ticker: "AAPL", limit: 3 });
3687
+ * const res = await client.sec.filings({ limit: 3, ticker: "AAPL" });
3086
3688
  */
3087
3689
  filings(input, options) {
3088
3690
  return this._core.run("sec.filings", input, options);
@@ -3098,9 +3700,9 @@ var SemrushNamespace = class {
3098
3700
  /**
3099
3701
  * Semrush Keyword Research
3100
3702
  *
3101
- * Semrush keyword research for any term: monthly search volume, CPC, competition, keyword difficulty, plus related keywords and question keywords. Transparent per-request USD pricing.
3703
+ * Semrush keyword research for any term: monthly search volume, CPC, competition, keyword difficulty, plus related keywords and question keywords.
3102
3704
  *
3103
- * Price: $0.015 per result.
3705
+ * Price: $0 per request plus $0.015 per result (maximum $0.015).
3104
3706
  *
3105
3707
  * @example
3106
3708
  * const res = await client.semrush.keywords({ keyword: "best running shoes", database: "us" });
@@ -3111,9 +3713,9 @@ var SemrushNamespace = class {
3111
3713
  /**
3112
3714
  * Semrush Domain Overview
3113
3715
  *
3114
- * a Semrush SEO overview for any domain: Authority Score, organic and paid traffic, keyword and backlink counts, top country, and the domain's top organic keywords. Transparent per-request USD pricing.
3716
+ * a Semrush SEO overview for any domain: Authority Score, organic and paid traffic, keyword and backlink counts, top country, and the domain's top organic keywords.
3115
3717
  *
3116
- * Price: $0.015 per result.
3718
+ * Price: $0 per request plus $0.015 per result (maximum $0.015).
3117
3719
  *
3118
3720
  * @example
3119
3721
  * const res = await client.semrush.overview({ domain: "ahrefs.com", database: "us" });
@@ -3123,6 +3725,170 @@ var SemrushNamespace = class {
3123
3725
  }
3124
3726
  };
3125
3727
 
3728
+ // src/generated/platforms/seo.ts
3729
+ var SeoNamespace = class {
3730
+ constructor(_core) {
3731
+ this._core = _core;
3732
+ }
3733
+ _core;
3734
+ /**
3735
+ * SEO Competitor Domains
3736
+ *
3737
+ * Get AnyAPI SEO competitor domains for a target domain with shared keyword counts and organic metrics as normalized JSON.
3738
+ *
3739
+ * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
3740
+ *
3741
+ * @example
3742
+ * const res = await client.seo.competitorsDomain({ target: "github.com", language: "en", limit: 10, location: 2840 });
3743
+ */
3744
+ competitorsDomain(input, options) {
3745
+ return this._core.run("seo.competitors_domain", input, options);
3746
+ }
3747
+ /**
3748
+ * SEO Domain Intersection
3749
+ *
3750
+ * Get AnyAPI SEO keyword overlap for two domains with each domain's rankings, URLs, volume, CPC, and difficulty as normalized JSON.
3751
+ *
3752
+ * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
3753
+ *
3754
+ * @example
3755
+ * const res = await client.seo.domainIntersection({ target1: "github.com", target2: "gitlab.com", language: "en", limit: 10, location: 2840 });
3756
+ */
3757
+ domainIntersection(input, options) {
3758
+ return this._core.run("seo.domain_intersection", input, options);
3759
+ }
3760
+ /**
3761
+ * SEO Domain Rank Overview
3762
+ *
3763
+ * Get AnyAPI SEO domain ranking, organic traffic, and paid traffic metrics as normalized JSON.
3764
+ *
3765
+ * Price: $0.0156 per request plus $0 per result (maximum $0.0156).
3766
+ *
3767
+ * @example
3768
+ * const res = await client.seo.domainRankOverview({ target: "ahrefs.com", language: "en", location: 2840 });
3769
+ */
3770
+ domainRankOverview(input, options) {
3771
+ return this._core.run("seo.domain_rank_overview", input, options);
3772
+ }
3773
+ /**
3774
+ * SEO Keyword Difficulty
3775
+ *
3776
+ * Get AnyAPI SEO keyword difficulty scores for one or more keywords as normalized JSON.
3777
+ *
3778
+ * Price: $0.0156 per request plus $0.00016 per keyword (maximum $0.1756).
3779
+ *
3780
+ * @example
3781
+ * const res = await client.seo.keywordDifficulty({ keywords: ["seo tools"], language: "en", location: 2840 });
3782
+ */
3783
+ keywordDifficulty(input, options) {
3784
+ return this._core.run("seo.keyword_difficulty", input, options);
3785
+ }
3786
+ /**
3787
+ * SEO Keyword Ideas
3788
+ *
3789
+ * Find AnyAPI SEO keyword ideas from seed terms with volume, CPC, competition, difficulty, and intent as normalized JSON.
3790
+ *
3791
+ * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
3792
+ *
3793
+ * @example
3794
+ * const res = await client.seo.keywordIdeas({ keywords: ["project management software"], language: "en", limit: 5, location: 2840 });
3795
+ */
3796
+ keywordIdeas(input, options) {
3797
+ return this._core.run("seo.keyword_ideas", input, options);
3798
+ }
3799
+ /**
3800
+ * SEO Keyword Overview
3801
+ *
3802
+ * Get AnyAPI SEO keyword metrics including search volume, CPC, competition, difficulty, and search intent as normalized JSON.
3803
+ *
3804
+ * Price: $0.0156 per request plus $0.00016 per keyword (maximum $0.1276).
3805
+ *
3806
+ * @example
3807
+ * const res = await client.seo.keywordOverview({ keywords: ["project management software"], language: "en", location: 2840 });
3808
+ */
3809
+ keywordOverview(input, options) {
3810
+ return this._core.run("seo.keyword_overview", input, options);
3811
+ }
3812
+ /**
3813
+ * SEO Keyword Suggestions
3814
+ *
3815
+ * Find AnyAPI SEO keyword suggestions from a seed term with volume, CPC, competition, difficulty, and intent as normalized JSON.
3816
+ *
3817
+ * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
3818
+ *
3819
+ * @example
3820
+ * const res = await client.seo.keywordSuggestions({ keyword: "project management software", language: "en", limit: 5, location: 2840 });
3821
+ */
3822
+ keywordSuggestions(input, options) {
3823
+ return this._core.run("seo.keyword_suggestions", input, options);
3824
+ }
3825
+ /**
3826
+ * SEO Local Pack
3827
+ *
3828
+ * Search AnyAPI SEO local pack results with rankings, ratings, addresses, and contact basics as normalized JSON.
3829
+ *
3830
+ * Price: $0.0026 per request plus $0 per result (maximum $0.0026).
3831
+ *
3832
+ * @example
3833
+ * const res = await client.seo.localPack({ keyword: "coffee shop", language: "en", limit: 5, location: "New York,New York,United States" });
3834
+ */
3835
+ localPack(input, options) {
3836
+ return this._core.run("seo.local_pack", input, options);
3837
+ }
3838
+ /**
3839
+ * SEO Ranked Keywords
3840
+ *
3841
+ * Get AnyAPI SEO ranked keywords for a domain with rankings, traffic estimates, volume, CPC, difficulty, and intent as normalized JSON.
3842
+ *
3843
+ * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
3844
+ *
3845
+ * @example
3846
+ * const res = await client.seo.rankedKeywords({ target: "github.com", language: "en", limit: 10, location: 2840 });
3847
+ */
3848
+ rankedKeywords(input, options) {
3849
+ return this._core.run("seo.ranked_keywords", input, options);
3850
+ }
3851
+ /**
3852
+ * SEO Related Keywords
3853
+ *
3854
+ * Find AnyAPI SEO related keywords from a seed term with volume, CPC, competition, difficulty, and intent as normalized JSON.
3855
+ *
3856
+ * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
3857
+ *
3858
+ * @example
3859
+ * const res = await client.seo.relatedKeywords({ keyword: "project management software", language: "en", limit: 5, location: 2840 });
3860
+ */
3861
+ relatedKeywords(input, options) {
3862
+ return this._core.run("seo.related_keywords", input, options);
3863
+ }
3864
+ /**
3865
+ * SEO Search Intent
3866
+ *
3867
+ * Classify AnyAPI SEO keyword search intent as normalized JSON.
3868
+ *
3869
+ * Price: $0.0156 per request plus $0.00016 per keyword (maximum $0.1756).
3870
+ *
3871
+ * @example
3872
+ * const res = await client.seo.searchIntent({ keywords: ["seo tools"], language: "en" });
3873
+ */
3874
+ searchIntent(input, options) {
3875
+ return this._core.run("seo.search_intent", input, options);
3876
+ }
3877
+ /**
3878
+ * SEO Search Volume
3879
+ *
3880
+ * Get AnyAPI SEO keyword search volume, CPC, competition, bid estimates, and monthly history as normalized JSON.
3881
+ *
3882
+ * Price: $0.117 per request plus $0 per result (maximum $0.117).
3883
+ *
3884
+ * @example
3885
+ * const res = await client.seo.searchVolume({ keywords: ["seo tools"], language: "en", location: 2840 });
3886
+ */
3887
+ searchVolume(input, options) {
3888
+ return this._core.run("seo.search_volume", input, options);
3889
+ }
3890
+ };
3891
+
3126
3892
  // src/generated/platforms/snapchat.ts
3127
3893
  var SnapchatNamespace = class {
3128
3894
  constructor(_core) {
@@ -3132,9 +3898,9 @@ var SnapchatNamespace = class {
3132
3898
  /**
3133
3899
  * Snapchat Profile
3134
3900
  *
3135
- * Fetch a Snapchat user's public profile by username - display name, bio, subscriber count, and recent public content - with transparent per-request USD pricing.
3901
+ * Fetch a Snapchat user's public profile by username - display name, bio, subscriber count, and recent public content.
3136
3902
  *
3137
- * Price: $0.001 per request plus $0.002 per result.
3903
+ * Price: $0.001 per request plus $0.002 per result (maximum $0.003).
3138
3904
  *
3139
3905
  * @example
3140
3906
  * const res = await client.snapchat.profile({ username: "nasa" });
@@ -3153,9 +3919,9 @@ var SocialNamespace = class {
3153
3919
  /**
3154
3920
  * Social Profile Finder
3155
3921
  *
3156
- * Find a person's or brand's profiles across major social networks from a single name, returned as normalized JSON with flat per-request USD pricing.
3922
+ * Find a person's or brand's profiles across major social networks from a single name, returned as normalized JSON.
3157
3923
  *
3158
- * Price: $0.001 per request plus $0.002 per result.
3924
+ * Price: $0.001 per request plus $0.002 per result (maximum $0.021).
3159
3925
  *
3160
3926
  * @example
3161
3927
  * const res = await client.social.finder({ name: "Elon Musk", limit: 3 });
@@ -3174,7 +3940,7 @@ var SpotifyNamespace = class {
3174
3940
  /**
3175
3941
  * Spotify Album
3176
3942
  *
3177
- * Fetch a Spotify album's tracklist, play counts, label, and release details by album URL or ID, with transparent per-request USD pricing.
3943
+ * Fetch a Spotify album's tracklist, play counts, label, and release details by album URL or ID.
3178
3944
  *
3179
3945
  * Price: $0.002 per request.
3180
3946
  *
@@ -3187,7 +3953,7 @@ var SpotifyNamespace = class {
3187
3953
  /**
3188
3954
  * Spotify Artist
3189
3955
  *
3190
- * Fetch a Spotify artist's discography (albums, singles, top tracks) and metadata by artist URL or ID, with transparent per-request USD pricing.
3956
+ * Fetch a Spotify artist's discography (albums, singles, top tracks) and metadata by artist URL or ID.
3191
3957
  *
3192
3958
  * Price: $0.002 per request.
3193
3959
  *
@@ -3200,9 +3966,9 @@ var SpotifyNamespace = class {
3200
3966
  /**
3201
3967
  * Spotify Play Count
3202
3968
  *
3203
- * Fetch stream counts and stats for a Spotify track, album, or artist URL, with transparent per-request USD pricing.
3969
+ * Fetch stream counts and stats for a Spotify track, album, or artist URL.
3204
3970
  *
3205
- * Price: $0.003 per result.
3971
+ * Price: $0 per request plus $0.003 per result (maximum $0.003).
3206
3972
  *
3207
3973
  * @example
3208
3974
  * const res = await client.spotify.playCount({ url: "https://open.spotify.com/track/4cOdK2wGLETKBW3PvgPWqT" });
@@ -3213,7 +3979,7 @@ var SpotifyNamespace = class {
3213
3979
  /**
3214
3980
  * Spotify Podcast
3215
3981
  *
3216
- * Fetch a Spotify podcast show's name, publisher, description, rating, and topics by show URL or ID, with transparent per-request USD pricing.
3982
+ * Fetch a Spotify podcast show's name, publisher, description, rating, and topics by show URL or ID.
3217
3983
  *
3218
3984
  * Price: $0.002 per request.
3219
3985
  *
@@ -3226,7 +3992,7 @@ var SpotifyNamespace = class {
3226
3992
  /**
3227
3993
  * Spotify Podcast Episodes
3228
3994
  *
3229
- * List a Spotify podcast show's episodes with titles, durations, descriptions, and release dates by show URL or ID, with transparent per-request USD pricing.
3995
+ * List a Spotify podcast show's episodes with titles, durations, descriptions, and release dates by show URL or ID.
3230
3996
  *
3231
3997
  * Price: $0.002 per request.
3232
3998
  *
@@ -3255,7 +4021,7 @@ var SpotifyNamespace = class {
3255
4021
  /**
3256
4022
  * Spotify Search
3257
4023
  *
3258
- * Search Spotify for matching tracks, albums, artists, podcasts, and playlists by keyword, with transparent per-request USD pricing.
4024
+ * Search Spotify for matching tracks, albums, artists, podcasts, and playlists by keyword.
3259
4025
  *
3260
4026
  * Price: $0.002 per request.
3261
4027
  *
@@ -3268,7 +4034,7 @@ var SpotifyNamespace = class {
3268
4034
  /**
3269
4035
  * Spotify Track
3270
4036
  *
3271
- * Fetch a Spotify track's play count, popularity, duration, and album details by track URL or ID, with transparent per-request USD pricing.
4037
+ * Fetch a Spotify track's play count, popularity, duration, and album details by track URL or ID.
3272
4038
  *
3273
4039
  * Price: $0.002 per request.
3274
4040
  *
@@ -3289,9 +4055,9 @@ var SubstackNamespace = class {
3289
4055
  /**
3290
4056
  * Substack Posts
3291
4057
  *
3292
- * Pull posts from any Substack publication by its URL - or pass a single post URL (…/p/slug) to fetch just that one article. Returns title, subtitle, publish date, paywall status, word count, engagement (reactions, comments, restacks), author profile, and full article HTML. Priced per post returned.
4058
+ * Pull posts from any Substack publication by its URL - or pass a single post URL (…/p/slug) to fetch just that one article. Returns title, subtitle, publish date, paywall status, word count, engagement (reactions, comments, restacks), author profile, and full article HTML.
3293
4059
  *
3294
- * Price: $0.005 per request plus $0.00156 per result.
4060
+ * Price: $0.005 per request plus $0.00156 per result (maximum $0.161).
3295
4061
  *
3296
4062
  * @example
3297
4063
  * const res = await client.substack.posts({ url: "https://www.astralcodexten.com", limit: 3 });
@@ -3310,7 +4076,7 @@ var ThreadsNamespace = class {
3310
4076
  /**
3311
4077
  * Threads Post
3312
4078
  *
3313
- * Fetch a single Threads post by URL - text, author, engagement counts, and timestamp - billed per request in USD.
4079
+ * Fetch a single Threads post by URL - text, author, engagement counts, and timestamp.
3314
4080
  *
3315
4081
  * Price: $0.002 per request.
3316
4082
  *
@@ -3323,7 +4089,7 @@ var ThreadsNamespace = class {
3323
4089
  /**
3324
4090
  * Threads Profile
3325
4091
  *
3326
- * Fetch a Threads user's public profile (bio, follower count, verification, profile picture) by username, billed per request in USD.
4092
+ * Fetch a Threads user's public profile (bio, follower count, verification, profile picture) by username.
3327
4093
  *
3328
4094
  * Price: $0.002 per request.
3329
4095
  *
@@ -3336,7 +4102,7 @@ var ThreadsNamespace = class {
3336
4102
  /**
3337
4103
  * Threads Search
3338
4104
  *
3339
- * Search public Threads posts by keyword or hashtag and get normalized post records - text, author, and engagement - billed per request in USD.
4105
+ * Search public Threads posts by keyword or hashtag and get normalized post records - text, author, and engagement.
3340
4106
  *
3341
4107
  * Price: $0.002 per request.
3342
4108
  *
@@ -3349,7 +4115,7 @@ var ThreadsNamespace = class {
3349
4115
  /**
3350
4116
  * Threads User Search
3351
4117
  *
3352
- * Search Threads users by name or username and get normalized profile records - username, full name, verification, and picture - at a flat per-request USD price.
4118
+ * Search Threads users by name or username and get normalized profile records - username, full name, verification, and picture.
3353
4119
  *
3354
4120
  * Price: $0.002 per request.
3355
4121
  *
@@ -3362,7 +4128,7 @@ var ThreadsNamespace = class {
3362
4128
  /**
3363
4129
  * Threads User Posts
3364
4130
  *
3365
- * List a Threads user's recent public posts by username - text, engagement counts, and post URLs - at a flat per-request USD price.
4131
+ * List a Threads user's recent public posts by username - text, engagement counts, and post URLs.
3366
4132
  *
3367
4133
  * Price: $0.002 per request.
3368
4134
  *
@@ -3401,7 +4167,7 @@ var TiktokNamespace = class {
3401
4167
  * Price: $0.002 per request.
3402
4168
  *
3403
4169
  * @example
3404
- * const res = await client.tiktok.adLibrarySearch({ query: "spotify" });
4170
+ * const res = await client.tiktok.adLibrarySearch({ query: "spotify", objective: "conversions" });
3405
4171
  */
3406
4172
  adLibrarySearch(input, options) {
3407
4173
  return this._core.run("tiktok.ad_library_search", input, options);
@@ -3467,7 +4233,7 @@ var TiktokNamespace = class {
3467
4233
  /**
3468
4234
  * TikTok Followers
3469
4235
  *
3470
- * List the followers of a TikTok account by username, returning each follower's profile basics, with transparent per-request USD pricing.
4236
+ * List the followers of a TikTok account by username, returning each follower's profile basics.
3471
4237
  *
3472
4238
  * Price: $0.002 per request.
3473
4239
  *
@@ -3509,7 +4275,7 @@ var TiktokNamespace = class {
3509
4275
  /**
3510
4276
  * TikTok Hashtag Videos
3511
4277
  *
3512
- * List recent TikTok videos for a hashtag (creator, caption, views, likes, shares), normalized output with transparent per-request USD pricing.
4278
+ * List recent TikTok videos for a hashtag (creator, caption, views, likes, shares), normalized output.
3513
4279
  *
3514
4280
  * Price: $0.00325 per request.
3515
4281
  *
@@ -3792,7 +4558,7 @@ var TiktokShopNamespace = class {
3792
4558
  /**
3793
4559
  * TikTok Shop Product
3794
4560
  *
3795
- * Fetch TikTok Shop product details - title, price, sales, seller, and ratings - from a product URL, with transparent per-request USD pricing.
4561
+ * Fetch TikTok Shop product details - title, price, sales, seller, and ratings - from a product URL.
3796
4562
  *
3797
4563
  * Price: $0.002 per request.
3798
4564
  *
@@ -3897,7 +4663,7 @@ var TripadvisorNamespace = class {
3897
4663
  /**
3898
4664
  * Tripadvisor Reviews
3899
4665
  *
3900
- * Fetch the latest reviews for any Tripadvisor hotel, restaurant, or attraction by its page URL - rating, text, date, and trip details as normalized JSON with transparent per-request USD pricing.
4666
+ * Fetch the latest reviews for any Tripadvisor hotel, restaurant, or attraction by its page URL - rating, text, date, and trip details as normalized JSON.
3901
4667
  *
3902
4668
  * Price: $0.00325 per request.
3903
4669
  *
@@ -3910,7 +4676,7 @@ var TripadvisorNamespace = class {
3910
4676
  /**
3911
4677
  * Tripadvisor Search
3912
4678
  *
3913
- * Search Tripadvisor for hotels, restaurants, and attractions in any destination and get rich place records (ratings, review counts, contact details, pricing) as normalized JSON with transparent per-request USD pricing.
4679
+ * Search Tripadvisor for hotels, restaurants, and attractions in any destination and get rich place records (ratings, review counts, contact details, pricing) as normalized JSON.
3914
4680
  *
3915
4681
  * Price: $0.00325 per request.
3916
4682
  *
@@ -3931,7 +4697,7 @@ var TrustpilotNamespace = class {
3931
4697
  /**
3932
4698
  * Trustpilot Reviews
3933
4699
  *
3934
- * Pull Trustpilot reviews for any company by brand name - star ratings, review text, dates, and reviewer details as clean JSON, billed per request in USD.
4700
+ * Pull Trustpilot reviews for any company by brand name - star ratings, review text, dates, and reviewer details as clean JSON.
3935
4701
  *
3936
4702
  * Price: $0.01625 per request.
3937
4703
  *
@@ -3952,7 +4718,7 @@ var TruthsocialNamespace = class {
3952
4718
  /**
3953
4719
  * Truth Social Post
3954
4720
  *
3955
- * Get a single Truth Social post by its URL - text, author, engagement (likes, comments, shares), and timestamp as clean JSON, billed per request in USD.
4721
+ * Get a single Truth Social post by its URL - text, author, engagement (likes, comments, shares), and timestamp as clean JSON.
3956
4722
  *
3957
4723
  * Price: $0.00325 per request.
3958
4724
  *
@@ -3965,7 +4731,7 @@ var TruthsocialNamespace = class {
3965
4731
  /**
3966
4732
  * Truth Social Profile
3967
4733
  *
3968
- * Get a Truth Social account's public profile by handle - display name, bio, follower/following counts, and post count as clean JSON, billed per request in USD.
4734
+ * Get a Truth Social account's public profile by handle - display name, bio, follower/following counts, and post count as clean JSON.
3969
4735
  *
3970
4736
  * Price: $0.00325 per request.
3971
4737
  *
@@ -3978,7 +4744,7 @@ var TruthsocialNamespace = class {
3978
4744
  /**
3979
4745
  * Truth Social User Posts
3980
4746
  *
3981
- * List a Truth Social account's recent posts by handle - text, engagement (likes, comments, shares), and timestamps as clean JSON, billed per request in USD.
4747
+ * List a Truth Social account's recent posts by handle - text, engagement (likes, comments, shares), and timestamps as clean JSON.
3982
4748
  *
3983
4749
  * Price: $0.00325 per request.
3984
4750
  *
@@ -4025,9 +4791,9 @@ var TwitterNamespace = class {
4025
4791
  /**
4026
4792
  * X / Twitter Followers
4027
4793
  *
4028
- * Fetch the follower list of any public X (Twitter) account by username - up to 100,000 follower records per request with transparent per-result USD pricing.
4794
+ * Fetch the follower list of any public X (Twitter) account by username with cursor pagination. Limit is a per-page maximum; native pages contain up to 200 accounts unless requireSinglePage selects a bulk lane.
4029
4795
  *
4030
- * Price: $0.00015 per result.
4796
+ * Price: $0.00075 per request.
4031
4797
  *
4032
4798
  * @example
4033
4799
  * const res = await client.twitter.followers({ username: "nasa", limit: 200 });
@@ -4035,12 +4801,28 @@ var TwitterNamespace = class {
4035
4801
  followers(input, options) {
4036
4802
  return this._core.run("twitter.followers", input, options);
4037
4803
  }
4804
+ /**
4805
+ * Iterate every result of X / Twitter Followers across pages.
4806
+ *
4807
+ * Yields items directly; call `.pages()` on the return value to walk whole
4808
+ * result pages instead (each carries its own costUsd).
4809
+ */
4810
+ iterFollowers(input, options) {
4811
+ return paginate(
4812
+ this._core,
4813
+ "twitter.followers",
4814
+ input,
4815
+ "items",
4816
+ false,
4817
+ options
4818
+ );
4819
+ }
4038
4820
  /**
4039
4821
  * X / Twitter Following
4040
4822
  *
4041
- * List the accounts a public X (Twitter) account follows by username - up to 100,000 records per request with transparent per-result USD pricing.
4823
+ * List the accounts a public X (Twitter) account follows by username with cursor pagination. Limit is a per-page maximum; native pages contain up to 200 accounts unless requireSinglePage selects a bulk lane.
4042
4824
  *
4043
- * Price: $0.00015 per result.
4825
+ * Price: $0.00075 per request.
4044
4826
  *
4045
4827
  * @example
4046
4828
  * const res = await client.twitter.following({ username: "nasa", limit: 200 });
@@ -4048,12 +4830,28 @@ var TwitterNamespace = class {
4048
4830
  following(input, options) {
4049
4831
  return this._core.run("twitter.following", input, options);
4050
4832
  }
4833
+ /**
4834
+ * Iterate every result of X / Twitter Following across pages.
4835
+ *
4836
+ * Yields items directly; call `.pages()` on the return value to walk whole
4837
+ * result pages instead (each carries its own costUsd).
4838
+ */
4839
+ iterFollowing(input, options) {
4840
+ return paginate(
4841
+ this._core,
4842
+ "twitter.following",
4843
+ input,
4844
+ "items",
4845
+ false,
4846
+ options
4847
+ );
4848
+ }
4051
4849
  /**
4052
4850
  * Twitter Profile
4053
4851
  *
4054
4852
  * Fetch a Twitter/X account's public profile (followers, tweets, bio, verification) by handle, normalized across providers with transparent failover.
4055
4853
  *
4056
- * Price: $0.001 per request.
4854
+ * Price: $0.00075 per request.
4057
4855
  *
4058
4856
  * @example
4059
4857
  * const res = await client.twitter.profile({ handle: "nasa" });
@@ -4064,9 +4862,9 @@ var TwitterNamespace = class {
4064
4862
  /**
4065
4863
  * X / Twitter Post Replies
4066
4864
  *
4067
- * Fetch the replies to any X (Twitter) post URL as structured records - author, text, and engagement - priced per request in USD.
4865
+ * Fetch the replies to any X (Twitter) post URL as structured records - author, text, and engagement.
4068
4866
  *
4069
- * Price: $0.0025 per request plus $0.00025 per result.
4867
+ * Price: $0.0025 per request plus $0.00025 per result (maximum $0.0125).
4070
4868
  *
4071
4869
  * @example
4072
4870
  * const res = await client.twitter.replies({ url: "https://x.com/jack/status/20", limit: 3 });
@@ -4077,9 +4875,9 @@ var TwitterNamespace = class {
4077
4875
  /**
4078
4876
  * X / Twitter Search
4079
4877
  *
4080
- * Search X (Twitter) with full advanced-search syntax and get up to 50 structured tweets per request - text, author, and engagement - with transparent per-request USD pricing.
4878
+ * 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.
4081
4879
  *
4082
- * Price: $0.004 per request plus $0.0002 per result.
4880
+ * Price: $0.00075 per request.
4083
4881
  *
4084
4882
  * @example
4085
4883
  * const res = await client.twitter.search({ query: "openai" });
@@ -4087,12 +4885,28 @@ var TwitterNamespace = class {
4087
4885
  search(input, options) {
4088
4886
  return this._core.run("twitter.search", input, options);
4089
4887
  }
4888
+ /**
4889
+ * Iterate every result of X / Twitter Search across pages.
4890
+ *
4891
+ * Yields items directly; call `.pages()` on the return value to walk whole
4892
+ * result pages instead (each carries its own costUsd).
4893
+ */
4894
+ iterSearch(input, options) {
4895
+ return paginate(
4896
+ this._core,
4897
+ "twitter.search",
4898
+ input,
4899
+ "items",
4900
+ false,
4901
+ options
4902
+ );
4903
+ }
4090
4904
  /**
4091
4905
  * Twitter Tweet
4092
4906
  *
4093
4907
  * Fetch a single Twitter/X tweet by URL with its full text and engagement counts (likes, retweets, replies, quotes, bookmarks, views), normalized across providers.
4094
4908
  *
4095
- * Price: $0.002 per request.
4909
+ * Price: $0.00075 per request.
4096
4910
  *
4097
4911
  * @example
4098
4912
  * const res = await client.twitter.tweet({ url: "https://x.com/SpaceX/status/1732824684683784516" });
@@ -4116,9 +4930,9 @@ var TwitterNamespace = class {
4116
4930
  /**
4117
4931
  * Twitter User Tweets
4118
4932
  *
4119
- * Get an X (Twitter) account's latest tweets by handle, newest first (reverse-chronological, replies included) - not just the popular ones - up to 1000 per call, with engagement, views, and language, normalized across providers with cursor pagination.
4933
+ * Get an X (Twitter) account's latest tweets by handle, newest first (reverse-chronological, replies included), with engagement, views, language, and cursor pagination. Limit is a per-page maximum; native pages contain approximately 20 tweets unless requireSinglePage selects a bulk lane.
4120
4934
  *
4121
- * Price: $0.001 per request.
4935
+ * Price: $0.00075 per request.
4122
4936
  *
4123
4937
  * @example
4124
4938
  * const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });
@@ -4153,12 +4967,12 @@ var UpworkNamespace = class {
4153
4967
  /**
4154
4968
  * Upwork Jobs
4155
4969
  *
4156
- * Search Upwork job postings by keyword - up to 25 fresh listings per request with transparent per-request USD pricing.
4970
+ * Search Upwork job postings by keyword - up to 25 fresh listings per request.
4157
4971
  *
4158
- * Price: $0.0033 per result.
4972
+ * Price: $0 per request plus $0.0033 per result (maximum $0.0825).
4159
4973
  *
4160
4974
  * @example
4161
- * const res = await client.upwork.jobs({ query: "web developer", limit: 10 });
4975
+ * const res = await client.upwork.jobs({ query: "web developer", jobType: "fixed", limit: 10 });
4162
4976
  */
4163
4977
  jobs(input, options) {
4164
4978
  return this._core.run("upwork.jobs", input, options);
@@ -4174,9 +4988,9 @@ var WalmartNamespace = class {
4174
4988
  /**
4175
4989
  * Walmart Product
4176
4990
  *
4177
- * Fetch a Walmart product page by URL and get full product details - title, price, availability, ratings, images, and specs - in one normalized, flat-priced response.
4991
+ * Fetch a Walmart product page by URL and get full product details - title, price, availability, ratings, images, and specs - in one normalized response.
4178
4992
  *
4179
- * Price: $0.00368 per result.
4993
+ * Price: $0 per request plus $0.00368 per result (maximum $0.00368).
4180
4994
  *
4181
4995
  * @example
4182
4996
  * const res = await client.walmart.product({ url: "https://www.walmart.com/ip/Apple-AirPods-Pro-2/5689919121" });
@@ -4197,7 +5011,7 @@ var WebNamespace = class {
4197
5011
  *
4198
5012
  * Crawl a website and get clean text content from up to 10 pages in one normalized response - ideal for feeding sites into LLMs and search indexes.
4199
5013
  *
4200
- * Price: $0.0015 per request plus $0.003 per result.
5014
+ * Price: $0.0015 per request plus $0.003 per result (maximum $0.0315).
4201
5015
  *
4202
5016
  * @example
4203
5017
  * const res = await client.web.crawl({ url: "https://example.com", limit: 3 });
@@ -4208,12 +5022,12 @@ var WebNamespace = class {
4208
5022
  /**
4209
5023
  * Web Map
4210
5024
  *
4211
- * Map an entire website into a clean list of its URLs (with titles and descriptions) in a single call. Billed per request in real dollars.
5025
+ * Map an entire website into a clean list of its URLs (with titles and descriptions) in a single call.
4212
5026
  *
4213
5027
  * Price: $0.0009 per request.
4214
5028
  *
4215
5029
  * @example
4216
- * const res = await client.web.map({ url: "https://example.com" });
5030
+ * const res = await client.web.map({ url: "https://www.iana.org", search: "domain" });
4217
5031
  */
4218
5032
  map(input, options) {
4219
5033
  return this._core.run("web.map", input, options);
@@ -4221,12 +5035,12 @@ var WebNamespace = class {
4221
5035
  /**
4222
5036
  * Web Scrape
4223
5037
  *
4224
- * Scrape any web page and get its main content back as clean Markdown plus title and metadata. One call, billed per request in real dollars.
5038
+ * Scrape any web page and get its content back as clean Markdown (or HTML, or raw HTML) plus title and metadata.
4225
5039
  *
4226
5040
  * Price: $0.0009 per request.
4227
5041
  *
4228
5042
  * @example
4229
- * const res = await client.web.scrape({ url: "https://example.com" });
5043
+ * const res = await client.web.scrape({ url: "https://example.com", formats: ["markdown", "html", "rawHtml"], onlyMainContent: true });
4230
5044
  */
4231
5045
  scrape(input, options) {
4232
5046
  return this._core.run("web.scrape", input, options);
@@ -4234,9 +5048,9 @@ var WebNamespace = class {
4234
5048
  /**
4235
5049
  * Website Screenshot
4236
5050
  *
4237
- * Capture a real-browser screenshot of any web page URL, with transparent per-request USD pricing.
5051
+ * Capture a real-browser screenshot of any web page URL.
4238
5052
  *
4239
- * Price: $0.00158 per result.
5053
+ * Price: $0 per request plus $0.00158 per result (maximum $0.00158).
4240
5054
  *
4241
5055
  * @example
4242
5056
  * const res = await client.web.screenshot({ url: "https://example.com" });
@@ -4246,6 +5060,124 @@ var WebNamespace = class {
4246
5060
  }
4247
5061
  };
4248
5062
 
5063
+ // src/generated/platforms/weibo.ts
5064
+ var WeiboNamespace = class {
5065
+ constructor(_core) {
5066
+ this._core = _core;
5067
+ }
5068
+ _core;
5069
+ /**
5070
+ * Weibo Hot Search
5071
+ *
5072
+ * Get the complete current Weibo hot-search ranking with labels and heat values.
5073
+ *
5074
+ * Price: $0.0015 per request.
5075
+ *
5076
+ * @example
5077
+ * const res = await client.weibo.hotSearch({});
5078
+ */
5079
+ hotSearch(input, options) {
5080
+ return this._core.run("weibo.hot_search", input, options);
5081
+ }
5082
+ /**
5083
+ * Weibo Post
5084
+ *
5085
+ * Fetch a public Weibo post by ID with normalized author and engagement data.
5086
+ *
5087
+ * Price: $0.001 per request.
5088
+ *
5089
+ * @example
5090
+ * const res = await client.weibo.post({ postId: "5092682368025584", includeLongText: "true" });
5091
+ */
5092
+ post(input, options) {
5093
+ return this._core.run("weibo.post", input, options);
5094
+ }
5095
+ /**
5096
+ * Weibo Post Comments
5097
+ *
5098
+ * List first-level comments on a public Weibo post with pagination.
5099
+ *
5100
+ * Price: $0.001 per request.
5101
+ *
5102
+ * @example
5103
+ * const res = await client.weibo.postComments({ postId: "5283919831764022", limit: 10 });
5104
+ */
5105
+ postComments(input, options) {
5106
+ return this._core.run("weibo.post_comments", input, options);
5107
+ }
5108
+ /**
5109
+ * Iterate every result of Weibo Post Comments across pages.
5110
+ *
5111
+ * Yields items directly; call `.pages()` on the return value to walk whole
5112
+ * result pages instead (each carries its own costUsd).
5113
+ */
5114
+ iterPostComments(input, options) {
5115
+ return paginate(
5116
+ this._core,
5117
+ "weibo.post_comments",
5118
+ input,
5119
+ "comments",
5120
+ false,
5121
+ options
5122
+ );
5123
+ }
5124
+ /**
5125
+ * Weibo Profile
5126
+ *
5127
+ * Fetch a public Weibo profile by user ID with normalized audience and account data.
5128
+ *
5129
+ * Price: $0.001 per request.
5130
+ *
5131
+ * @example
5132
+ * const res = await client.weibo.profile({ userId: "1722594714" });
5133
+ */
5134
+ profile(input, options) {
5135
+ return this._core.run("weibo.profile", input, options);
5136
+ }
5137
+ /**
5138
+ * Weibo Advanced Search
5139
+ *
5140
+ * Search public Weibo posts with optional result, media, and time filters.
5141
+ *
5142
+ * Price: $0.001 per request.
5143
+ *
5144
+ * @example
5145
+ * const res = await client.weibo.search({ query: "python", includeType: "pic", page: 1, searchType: "hot" });
5146
+ */
5147
+ search(input, options) {
5148
+ return this._core.run("weibo.search", input, options);
5149
+ }
5150
+ /**
5151
+ * Weibo User Posts
5152
+ *
5153
+ * List public posts from a Weibo user with normalized author and engagement data.
5154
+ *
5155
+ * Price: $0.001 per request.
5156
+ *
5157
+ * @example
5158
+ * const res = await client.weibo.userPosts({ userId: "7277477906", feature: 3, page: 1 });
5159
+ */
5160
+ userPosts(input, options) {
5161
+ return this._core.run("weibo.user_posts", input, options);
5162
+ }
5163
+ /**
5164
+ * Iterate every result of Weibo User Posts across pages.
5165
+ *
5166
+ * Yields items directly; call `.pages()` on the return value to walk whole
5167
+ * result pages instead (each carries its own costUsd).
5168
+ */
5169
+ iterUserPosts(input, options) {
5170
+ return paginate(
5171
+ this._core,
5172
+ "weibo.user_posts",
5173
+ input,
5174
+ "posts",
5175
+ false,
5176
+ options
5177
+ );
5178
+ }
5179
+ };
5180
+
4249
5181
  // src/generated/platforms/whatsapp.ts
4250
5182
  var WhatsappNamespace = class {
4251
5183
  constructor(_core) {
@@ -4255,9 +5187,9 @@ var WhatsappNamespace = class {
4255
5187
  /**
4256
5188
  * WhatsApp Number Validator
4257
5189
  *
4258
- * Check whether a phone number is registered on WhatsApp, with transparent per-request USD pricing.
5190
+ * Check whether a phone number is registered on WhatsApp.
4259
5191
  *
4260
- * Price: $0.0035 per request plus $0.001 per result.
5192
+ * Price: $0.0035 per request plus $0.001 per result (maximum $0.0045).
4261
5193
  *
4262
5194
  * @example
4263
5195
  * const res = await client.whatsapp.validate({ phone: "+14155552671" });
@@ -4276,9 +5208,9 @@ var YahooFinanceNamespace = class {
4276
5208
  /**
4277
5209
  * Yahoo Finance Quote
4278
5210
  *
4279
- * Look up a stock or ETF by ticker symbol and get its Yahoo Finance quote - price, market cap, volume, and key stats - as normalized JSON with transparent per-request USD pricing.
5211
+ * Look up a stock or ETF by ticker symbol and get its Yahoo Finance quote (price, market cap, volume, and key stats) as normalized JSON.
4280
5212
  *
4281
- * Price: $0.00005 per request plus $0.0009 per result.
5213
+ * Price: $0.00005 per request plus $0.0009 per result (maximum $0.00095).
4282
5214
  *
4283
5215
  * @example
4284
5216
  * const res = await client.yahooFinance.quote({ ticker: "AAPL" });
@@ -4297,9 +5229,9 @@ var YelpNamespace = class {
4297
5229
  /**
4298
5230
  * Yelp Search
4299
5231
  *
4300
- * Search Yelp for businesses by keyword and location: up to 20 listings with ratings, categories, and core business info per flat-priced request.
5232
+ * Search Yelp for businesses by keyword and location: up to 20 listings with ratings, categories, and core business info per request.
4301
5233
  *
4302
- * Price: $0.04 per request plus $0.00075 per result.
5234
+ * Price: $0.04 per request plus $0.00075 per result (maximum $0.055).
4303
5235
  *
4304
5236
  * @example
4305
5237
  * const res = await client.yelp.search({ location: "Chicago, IL", query: "pizza", limit: 5 });
@@ -4637,6 +5569,79 @@ var YoutubeNamespace = class {
4637
5569
  }
4638
5570
  };
4639
5571
 
5572
+ // src/generated/platforms/zhihu.ts
5573
+ var ZhihuNamespace = class {
5574
+ constructor(_core) {
5575
+ this._core = _core;
5576
+ }
5577
+ _core;
5578
+ /**
5579
+ * Zhihu Answer
5580
+ *
5581
+ * Fetch a public Zhihu answer with normalized author and question data.
5582
+ *
5583
+ * Price: $0.001 per request.
5584
+ *
5585
+ * @example
5586
+ * const res = await client.zhihu.answer({ answerId: "2054145988235880002" });
5587
+ */
5588
+ answer(input, options) {
5589
+ return this._core.run("zhihu.answer", input, options);
5590
+ }
5591
+ /**
5592
+ * Zhihu Profile
5593
+ *
5594
+ * Fetch a public Zhihu profile with normalized identity and audience data.
5595
+ *
5596
+ * Price: $0.001 per request.
5597
+ *
5598
+ * @example
5599
+ * const res = await client.zhihu.profile({ userToken: "ming-he-43-93" });
5600
+ */
5601
+ profile(input, options) {
5602
+ return this._core.run("zhihu.profile", input, options);
5603
+ }
5604
+ /**
5605
+ * Zhihu Question
5606
+ *
5607
+ * Fetch a public Zhihu question with normalized text and engagement statistics.
5608
+ *
5609
+ * Price: $0.001 per request.
5610
+ *
5611
+ * @example
5612
+ * const res = await client.zhihu.question({ questionId: "37811449" });
5613
+ */
5614
+ question(input, options) {
5615
+ return this._core.run("zhihu.question", input, options);
5616
+ }
5617
+ /**
5618
+ * Zhihu Question Answers
5619
+ *
5620
+ * List public answers to a Zhihu question with normalized authors and engagement data.
5621
+ *
5622
+ * Price: $0.001 per request.
5623
+ *
5624
+ * @example
5625
+ * const res = await client.zhihu.questionAnswers({ questionId: "37811449", limit: 5, offset: 0, order: "default" });
5626
+ */
5627
+ questionAnswers(input, options) {
5628
+ return this._core.run("zhihu.question_answers", input, options);
5629
+ }
5630
+ /**
5631
+ * Zhihu Article Search
5632
+ *
5633
+ * Search public Zhihu articles by keyword with normalized author and engagement data.
5634
+ *
5635
+ * Price: $0.001 per request.
5636
+ *
5637
+ * @example
5638
+ * const res = await client.zhihu.searchArticles({ query: "deepseek", limit: "20", showAllTopics: 0 });
5639
+ */
5640
+ searchArticles(input, options) {
5641
+ return this._core.run("zhihu.search_articles", input, options);
5642
+ }
5643
+ };
5644
+
4640
5645
  // src/generated/platforms/zillow.ts
4641
5646
  var ZillowNamespace = class {
4642
5647
  constructor(_core) {
@@ -4646,9 +5651,9 @@ var ZillowNamespace = class {
4646
5651
  /**
4647
5652
  * Zillow Property
4648
5653
  *
4649
- * Fetch full details for a single Zillow property listing by URL - price, facts and features, photos, and price/tax history - with transparent per-request USD pricing.
5654
+ * Fetch full details for a single Zillow property listing by URL (price, facts and features, photos, and price/tax history).
4650
5655
  *
4651
- * Price: $0.0024 per result.
5656
+ * Price: $0 per request plus $0.0024 per result (maximum $0.0024).
4652
5657
  *
4653
5658
  * @example
4654
5659
  * const res = await client.zillow.property({ url: "https://www.zillow.com/homedetails/4510-Secure-Ln-Austin-TX-78725/83126034_zpid/" });
@@ -4659,12 +5664,12 @@ var ZillowNamespace = class {
4659
5664
  /**
4660
5665
  * Zillow Search
4661
5666
  *
4662
- * Search Zillow for-sale, rental, or sold listings by location (city, ZIP, or address) and get matching properties (price, address, beds, baths, living area, status, Zestimate) as normalized JSON with per-request USD pricing that scales with the number of results.
5667
+ * 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.
4663
5668
  *
4664
- * Price: $0.0005 per request plus $0.003 per result.
5669
+ * Price: $0.0005 per request plus $0.003 per result (maximum $0.0755).
4665
5670
  *
4666
5671
  * @example
4667
- * const res = await client.zillow.search({ location: "Austin, TX", limit: 3, operation: "buy" });
5672
+ * const res = await client.zillow.search({ location: "Austin, TX", limit: 3, maxPrice: 900000, minBedrooms: 3, operation: "buy" });
4668
5673
  */
4669
5674
  search(input, options) {
4670
5675
  return this._core.run("zillow.search", input, options);
@@ -4709,6 +5714,14 @@ var AnyAPI2 = class extends AnyAPI {
4709
5714
  this._core
4710
5715
  );
4711
5716
  }
5717
+ /**
5718
+ * Typed methods for the apollo platform.
5719
+ */
5720
+ get apollo() {
5721
+ return this._namespaces["apollo"] ??= new ApolloNamespace(
5722
+ this._core
5723
+ );
5724
+ }
4712
5725
  /**
4713
5726
  * Typed methods for the appstore platform.
4714
5727
  */
@@ -4757,6 +5770,14 @@ var AnyAPI2 = class extends AnyAPI {
4757
5770
  this._core
4758
5771
  );
4759
5772
  }
5773
+ /**
5774
+ * Typed methods for the douyin platform.
5775
+ */
5776
+ get douyin() {
5777
+ return this._namespaces["douyin"] ??= new DouyinNamespace(
5778
+ this._core
5779
+ );
5780
+ }
4760
5781
  /**
4761
5782
  * Typed methods for the ebay platform.
4762
5783
  */
@@ -4965,6 +5986,14 @@ var AnyAPI2 = class extends AnyAPI {
4965
5986
  this._core
4966
5987
  );
4967
5988
  }
5989
+ /**
5990
+ * Typed methods for the seo platform.
5991
+ */
5992
+ get seo() {
5993
+ return this._namespaces["seo"] ??= new SeoNamespace(
5994
+ this._core
5995
+ );
5996
+ }
4968
5997
  /**
4969
5998
  * Typed methods for the snapchat platform.
4970
5999
  */
@@ -5077,6 +6106,14 @@ var AnyAPI2 = class extends AnyAPI {
5077
6106
  this._core
5078
6107
  );
5079
6108
  }
6109
+ /**
6110
+ * Typed methods for the weibo platform.
6111
+ */
6112
+ get weibo() {
6113
+ return this._namespaces["weibo"] ??= new WeiboNamespace(
6114
+ this._core
6115
+ );
6116
+ }
5080
6117
  /**
5081
6118
  * Typed methods for the whatsapp platform.
5082
6119
  */
@@ -5109,6 +6146,14 @@ var AnyAPI2 = class extends AnyAPI {
5109
6146
  this._core
5110
6147
  );
5111
6148
  }
6149
+ /**
6150
+ * Typed methods for the zhihu platform.
6151
+ */
6152
+ get zhihu() {
6153
+ return this._namespaces["zhihu"] ??= new ZhihuNamespace(
6154
+ this._core
6155
+ );
6156
+ }
5112
6157
  /**
5113
6158
  * Typed methods for the zillow platform.
5114
6159
  */
@@ -5126,6 +6171,7 @@ var AnyAPI2 = class extends AnyAPI {
5126
6171
  AmazonNamespace,
5127
6172
  AnyAPI,
5128
6173
  AnyAPIError,
6174
+ ApolloNamespace,
5129
6175
  AppstoreNamespace,
5130
6176
  AuthenticationError,
5131
6177
  BadRequestError,
@@ -5135,6 +6181,7 @@ var AnyAPI2 = class extends AnyAPI {
5135
6181
  CongressNamespace,
5136
6182
  ConnectionError,
5137
6183
  DexscreenerNamespace,
6184
+ DouyinNamespace,
5138
6185
  EbayNamespace,
5139
6186
  EmailNamespace,
5140
6187
  FacebookNamespace,
@@ -5165,6 +6212,7 @@ var AnyAPI2 = class extends AnyAPI {
5165
6212
  ResultNotFoundError,
5166
6213
  SecNamespace,
5167
6214
  SemrushNamespace,
6215
+ SeoNamespace,
5168
6216
  SnapchatNamespace,
5169
6217
  SocialNamespace,
5170
6218
  SpotifyNamespace,
@@ -5181,10 +6229,12 @@ var AnyAPI2 = class extends AnyAPI {
5181
6229
  UpworkNamespace,
5182
6230
  WalmartNamespace,
5183
6231
  WebNamespace,
6232
+ WeiboNamespace,
5184
6233
  WhatsappNamespace,
5185
6234
  YahooFinanceNamespace,
5186
6235
  YelpNamespace,
5187
6236
  YoutubeNamespace,
6237
+ ZhihuNamespace,
5188
6238
  ZillowNamespace,
5189
6239
  agentSignup,
5190
6240
  paginate,