@getanyapi/sdk 0.37.2 → 0.38.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1454,7 +1454,7 @@ declare class AmazonNamespace {
1454
1454
  *
1455
1455
  * List the top-ranked products of any Amazon Best Sellers category (rank, title, price, and rating) in one normalized request.
1456
1456
  *
1457
- * Price: $0.00045 per request.
1457
+ * Price: $0.0005 per request.
1458
1458
  *
1459
1459
  * @example
1460
1460
  * const res = await client.amazon.bestsellers({ url: "https://www.amazon.com/gp/bestsellers/electronics", limit: 3 });
@@ -1465,7 +1465,7 @@ declare class AmazonNamespace {
1465
1465
  *
1466
1466
  * Fetch full Amazon product details (title, brand, price when in stock, images, ratings, review count, variants, and attributes) from a product URL.
1467
1467
  *
1468
- * Price: $0.0009 per request.
1468
+ * Price: $0.001 per request.
1469
1469
  *
1470
1470
  * @example
1471
1471
  * const res = await client.amazon.product({ url: "https://www.amazon.com/dp/B00NTCH52W" });
@@ -1476,7 +1476,7 @@ declare class AmazonNamespace {
1476
1476
  *
1477
1477
  * Pull up to 50 customer reviews for any Amazon product by ASIN or URL: rating, title, text, date, and verified-purchase badge.
1478
1478
  *
1479
- * Price: $0.0009 per request.
1479
+ * Price: $0.001 per request.
1480
1480
  *
1481
1481
  * @example
1482
1482
  * const res = await client.amazon.reviews({ product: "B07PXGQC1Q", limit: 3 });
@@ -1487,7 +1487,7 @@ declare class AmazonNamespace {
1487
1487
  *
1488
1488
  * Search Amazon from any search or category URL and get up to 20 matching products (title, price, rating, and thumbnail) in one normalized response.
1489
1489
  *
1490
- * Price: $0.00045 per request.
1490
+ * Price: $0.0005 per request.
1491
1491
  *
1492
1492
  * @example
1493
1493
  * const res = await client.amazon.search({ url: "https://www.amazon.com/s?k=laptop", limit: 3 });
@@ -2930,7 +2930,7 @@ declare class BlueskyNamespace {
2930
2930
  *
2931
2931
  * Get a single Bluesky post by URL - text, author handle, like, reply, and repost counts as clean JSON.
2932
2932
  *
2933
- * Price: $0.002 per request.
2933
+ * Price: $0.0012 per request.
2934
2934
  *
2935
2935
  * @example
2936
2936
  * const res = await client.bluesky.post({ url: "https://bsky.app/profile/bsky.app/post/3l6oveex3ii2l" });
@@ -2941,7 +2941,7 @@ declare class BlueskyNamespace {
2941
2941
  *
2942
2942
  * Get a Bluesky user's public profile by handle - display name, bio, follower and post counts as clean JSON.
2943
2943
  *
2944
- * Price: $0.002 per request.
2944
+ * Price: $0.0012 per request.
2945
2945
  *
2946
2946
  * @example
2947
2947
  * const res = await client.bluesky.profile({ handle: "bsky.app" });
@@ -2952,7 +2952,7 @@ declare class BlueskyNamespace {
2952
2952
  *
2953
2953
  * List a Bluesky account's recent posts (text, author handle, like, reply, and repost counts) by handle as clean JSON.
2954
2954
  *
2955
- * Price: $0.002 per request.
2955
+ * Price: $0.0012 per request.
2956
2956
  *
2957
2957
  * @example
2958
2958
  * const res = await client.bluesky.userPosts({ handle: "bsky.app" });
@@ -3330,6 +3330,26 @@ interface ChatgptSearchInput {
3330
3330
  * Question or research prompt for ChatGPT to answer using web search.
3331
3331
  */
3332
3332
  prompt: string;
3333
+ /**
3334
+ * Serve only from a source that can return sponsored placements shown with the answer. One source currently qualifies, so the request cannot fall back when it is unavailable.
3335
+ * Default: false.
3336
+ */
3337
+ requireAds?: boolean;
3338
+ /**
3339
+ * Serve only from a source that can return brands and other named entities recognized in the answer. One source currently qualifies, so the request cannot fall back when it is unavailable.
3340
+ * Default: false.
3341
+ */
3342
+ requireEntities?: boolean;
3343
+ /**
3344
+ * Serve only from a source that can return places shown with the answer. Leaving this off still returns places whenever the source that answered can. Turning it on selects the single source that guarantees them, which costs more and has nothing to fall back to if it is unavailable.
3345
+ * Default: false.
3346
+ */
3347
+ requirePlaces?: boolean;
3348
+ /**
3349
+ * Serve only from a source that can return shopping cards shown with the answer. Leaving this off still returns shopping cards whenever the source that answered can. Turning it on selects the single source that guarantees them, which costs more and has nothing to fall back to if it is unavailable.
3350
+ * Default: false.
3351
+ */
3352
+ requireShoppingCards?: boolean;
3333
3353
  /**
3334
3354
  * Whether to insist ChatGPT browses the web. force instructs it to search and is the default; auto lets ChatGPT decide, which is cheaper and answers from memory roughly half the time. Check webSearchTriggered for what actually happened - an answer written without a search is not web-grounded.
3335
3355
  * One of: force, auto.
@@ -3337,7 +3357,45 @@ interface ChatgptSearchInput {
3337
3357
  */
3338
3358
  webSearch?: "force" | "auto";
3339
3359
  }
3360
+ interface ChatgptSearchAd {
3361
+ /**
3362
+ * Advertiser name.
3363
+ */
3364
+ advertiserName?: string | null;
3365
+ /**
3366
+ * Advertiser URL, tracking parameters stripped.
3367
+ * Format: uri.
3368
+ */
3369
+ advertiserUrl?: string | null;
3370
+ /**
3371
+ * Advertised domain.
3372
+ */
3373
+ domain?: string | null;
3374
+ /**
3375
+ * Sponsored image URL.
3376
+ * Format: uri.
3377
+ */
3378
+ image?: string | null;
3379
+ /**
3380
+ * Sponsored placement text.
3381
+ */
3382
+ snippet?: string | null;
3383
+ /**
3384
+ * Sponsored placement title.
3385
+ */
3386
+ title: string;
3387
+ /**
3388
+ * Sponsored destination URL, tracking parameters stripped.
3389
+ * Format: uri.
3390
+ */
3391
+ url?: string | null;
3392
+ [extra: string]: unknown;
3393
+ }
3340
3394
  interface ChatgptSearchCitation {
3395
+ /**
3396
+ * One-based answer section where ChatGPT cited this source. null means the source that answered cannot report the position.
3397
+ */
3398
+ answerPosition?: number | null;
3341
3399
  /**
3342
3400
  * Source page title when supplied by the search engine.
3343
3401
  */
@@ -3349,6 +3407,66 @@ interface ChatgptSearchCitation {
3349
3407
  url: string;
3350
3408
  [extra: string]: unknown;
3351
3409
  }
3410
+ interface ChatgptSearchEntitie {
3411
+ /**
3412
+ * Entity category.
3413
+ */
3414
+ category?: string | null;
3415
+ /**
3416
+ * Entity domain.
3417
+ */
3418
+ domain?: string | null;
3419
+ /**
3420
+ * Entity name.
3421
+ */
3422
+ title: string;
3423
+ /**
3424
+ * Entity URL, tracking parameters stripped.
3425
+ * Format: uri.
3426
+ */
3427
+ url?: string | null;
3428
+ [extra: string]: unknown;
3429
+ }
3430
+ interface ChatgptSearchPlace {
3431
+ /**
3432
+ * Place address as displayed.
3433
+ */
3434
+ address?: string | null;
3435
+ /**
3436
+ * Place category shown by ChatGPT.
3437
+ */
3438
+ category?: string | null;
3439
+ /**
3440
+ * Place description shown by ChatGPT.
3441
+ */
3442
+ description?: string | null;
3443
+ /**
3444
+ * Place or business name.
3445
+ */
3446
+ name: string;
3447
+ /**
3448
+ * Place phone number as displayed.
3449
+ */
3450
+ phone?: string | null;
3451
+ /**
3452
+ * One-based position in the places block.
3453
+ */
3454
+ position?: number;
3455
+ /**
3456
+ * Place rating when the source reports one.
3457
+ */
3458
+ rating?: number | null;
3459
+ /**
3460
+ * Number of reviews behind the displayed rating.
3461
+ */
3462
+ reviewCount?: number | null;
3463
+ /**
3464
+ * Place website URL, tracking parameters stripped.
3465
+ * Format: uri.
3466
+ */
3467
+ websiteUrl?: string | null;
3468
+ [extra: string]: unknown;
3469
+ }
3352
3470
  interface ChatgptSearchSearchResult {
3353
3471
  /**
3354
3472
  * Whether this retrieved page made it into citations. false means ChatGPT read the page and chose not to cite it, which is a different and more actionable fact than the page being absent.
@@ -3365,10 +3483,51 @@ interface ChatgptSearchSearchResult {
3365
3483
  url?: string;
3366
3484
  [extra: string]: unknown;
3367
3485
  }
3486
+ interface ChatgptSearchShoppingCard {
3487
+ /**
3488
+ * ISO 4217 currency code when the source reports it.
3489
+ */
3490
+ currency?: string | null;
3491
+ /**
3492
+ * Product description shown on the shopping card.
3493
+ */
3494
+ description?: string | null;
3495
+ /**
3496
+ * Product image URL.
3497
+ * Format: uri.
3498
+ */
3499
+ image?: string | null;
3500
+ /**
3501
+ * Merchant name shown on the shopping card.
3502
+ */
3503
+ merchants?: string | null;
3504
+ /**
3505
+ * Displayed product price as a number when the source reports one.
3506
+ */
3507
+ price?: number | null;
3508
+ /**
3509
+ * Product rating when the source reports one.
3510
+ */
3511
+ rating?: number | null;
3512
+ /**
3513
+ * Product name shown by ChatGPT.
3514
+ */
3515
+ title: string;
3516
+ /**
3517
+ * Product page URL, tracking parameters stripped.
3518
+ * Format: uri.
3519
+ */
3520
+ url?: string | null;
3521
+ [extra: string]: unknown;
3522
+ }
3368
3523
  /**
3369
3524
  * The `data` payload of ChatGPT Search (chatgpt.search).
3370
3525
  */
3371
3526
  interface ChatgptSearchData {
3527
+ /**
3528
+ * Sponsored placements ChatGPT displayed with the answer. null means the source that answered cannot report ads; an empty array means none were shown.
3529
+ */
3530
+ ads?: ChatgptSearchAd[] | null;
3372
3531
  /**
3373
3532
  * The web-grounded answer as text. Populated whenever the provider has data for the entity.
3374
3533
  */
@@ -3385,10 +3544,18 @@ interface ChatgptSearchData {
3385
3544
  * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. null means the source that answered does not report when it answered.
3386
3545
  */
3387
3546
  createdUtc?: number | null;
3547
+ /**
3548
+ * Brands and other named entities recognized in the answer. null means the source that answered cannot report them; an empty array means none were identified.
3549
+ */
3550
+ entities?: ChatgptSearchEntitie[] | null;
3388
3551
  /**
3389
3552
  * The ChatGPT model that produced the answer. null means the source that answered does not report it, which is not the same as an unknown model.
3390
3553
  */
3391
3554
  model?: string | null;
3555
+ /**
3556
+ * Places and local businesses ChatGPT displayed with the answer. null means the source that answered cannot report them; an empty array means none were shown.
3557
+ */
3558
+ places?: ChatgptSearchPlace[] | null;
3392
3559
  /**
3393
3560
  * The prompt answered by ChatGPT.
3394
3561
  */
@@ -3401,6 +3568,10 @@ interface ChatgptSearchData {
3401
3568
  * Pages ChatGPT retrieved while answering. A SUPERSET of citations: a page can be read and not cited. null means the source that answered cannot report them.
3402
3569
  */
3403
3570
  searchResults?: ChatgptSearchSearchResult[] | null;
3571
+ /**
3572
+ * Products ChatGPT displayed with the answer. null means the source that answered cannot report shopping cards; an empty array means none were shown.
3573
+ */
3574
+ shoppingCards?: ChatgptSearchShoppingCard[] | null;
3404
3575
  /**
3405
3576
  * Whether ChatGPT actually ran a web search before answering. ChatGPT decides this per session, and an answer written without one is not web-grounded. null means the source that answered cannot report it, which is not the same as false.
3406
3577
  */
@@ -9245,7 +9416,7 @@ declare class EbayNamespace {
9245
9416
  *
9246
9417
  * Fetch one eBay listing by URL and get the full offer record: price, condition, shipping, item location, seller feedback, quantity, watchers, and live auction state (bid count and end time).
9247
9418
  *
9248
- * Price: $0.00045 per request.
9419
+ * Price: $0.0005 per request.
9249
9420
  *
9250
9421
  * @example
9251
9422
  * const res = await client.ebay.product({ url: "https://www.ebay.com/itm/133576802017" });
@@ -9267,7 +9438,7 @@ declare class EbayNamespace {
9267
9438
  *
9268
9439
  * 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.
9269
9440
  *
9270
- * Price: $0.00045 per request.
9441
+ * Price: $0.0005 per request.
9271
9442
  *
9272
9443
  * @example
9273
9444
  * const res = await client.ebay.search({ query: "nintendo switch", limit: 3, sort: "price_low" });
@@ -12621,7 +12792,7 @@ declare class FacebookNamespace {
12621
12792
  *
12622
12793
  * 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.
12623
12794
  *
12624
- * Price: $0.002 per request.
12795
+ * Price: $0.0012 per request.
12625
12796
  *
12626
12797
  * @example
12627
12798
  * const res = await client.facebook.adDetails({ id: "1249043200627555" });
@@ -12643,7 +12814,7 @@ declare class FacebookNamespace {
12643
12814
  *
12644
12815
  * Get the spoken-word transcript of a Meta Ad Library video ad by ad ID or URL.
12645
12816
  *
12646
- * Price: $0.002 per request.
12817
+ * Price: $0.0012 per request.
12647
12818
  *
12648
12819
  * @example
12649
12820
  * const res = await client.facebook.adTranscript({ id: "931919822778200" });
@@ -12654,7 +12825,7 @@ declare class FacebookNamespace {
12654
12825
  *
12655
12826
  * Search the Meta Ad Library by keyword and get matching ads (advertiser, creative text, CTA, platforms, and run dates) with cursor pagination.
12656
12827
  *
12657
- * Price: $0.002 per request.
12828
+ * Price: $0.0012 per request.
12658
12829
  *
12659
12830
  * @example
12660
12831
  * const res = await client.facebook.adsSearch({ query: "nike", country: "US", searchType: "keyword_exact_phrase" });
@@ -12672,7 +12843,7 @@ declare class FacebookNamespace {
12672
12843
  *
12673
12844
  * List the replies to a Facebook post comment (text, author, reactions, and timestamps) as normalized JSON.
12674
12845
  *
12675
- * Price: $0.002 per request.
12846
+ * Price: $0.0012 per request.
12676
12847
  *
12677
12848
  * @example
12678
12849
  * const res = await client.facebook.commentReplies({ expansionToken: "MjoxNzgzMjI4OTY4OgF_o5zrjDnpemv4bwPtpsShXutqvKIw2bKs2YuJksL1Ak8n8YG-_KPSQGkIks5oW6wdRfhb_cRv9q5OX0NHjFJwEupYNZi9pcMV-FYLWLp47u-eusMkZFOMwbkISsTln7gtSvQrOzlffyavOTIL85PECYzGfunU2IAEkd13CIikxu06Mw10UJ1ShcFAmz8175R1uJfYy_iOixWZukqfrWhUfVOXApXznxx7qXvUxPwct76qe6p7-nVWQrPC_SZc2xh9Z8ggL3WMjgTzSq4oWFSsyZuuVsyVVjSgdjRQiDqtJSeEUlSjTr6vOnKsvKV-GpnBRaeA0BCaNRhqpB4xDZoduBuO5ZYrFvWLJdJLryDhCPI2Ss-Z33cEM2Vz7pLf1wJzE7TuizXPwICSn1DA_Prca-BItTbOUjAjfiySap1LXYkGuuDC2ziUdiEsmE5XhevMP8XtF_2WQlMNcGbXMEQyAWDUawtPAxXgMeRrCO9YGSweFQ4OZumoIlSGa3Vfjy-euUOHT1IAsNbV2A8rAq4HJNU3jCXQTn0vfW9xvbVQhL-53Mhw2YPjhlvUj6QpnGA25N8", feedbackId: "ZmVlZGJhY2s6MTM5MzQ2MTExNTQ4MTkyN18yMDgyNjUzMjQ1ODA5Mzg2" });
@@ -12690,7 +12861,7 @@ declare class FacebookNamespace {
12690
12861
  *
12691
12862
  * 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.
12692
12863
  *
12693
- * Price: $0.002 per request.
12864
+ * Price: $0.0012 per request.
12694
12865
  *
12695
12866
  * @example
12696
12867
  * const res = await client.facebook.companyAds({ companyName: "nike", sortBy: "recent" });
@@ -12708,7 +12879,7 @@ declare class FacebookNamespace {
12708
12879
  *
12709
12880
  * Fetch full details for a single Facebook event by ID or URL (name, schedule, venue, hosts, and attendance) as normalized JSON.
12710
12881
  *
12711
- * Price: $0.002 per request.
12882
+ * Price: $0.0012 per request.
12712
12883
  *
12713
12884
  * @example
12714
12885
  * const res = await client.facebook.eventDetails({ id: "4045709448982422" });
@@ -12719,7 +12890,7 @@ declare class FacebookNamespace {
12719
12890
  *
12720
12891
  * List public Facebook events for a city or place by its events-page URL (event name, date, venue, and attendance) as normalized JSON.
12721
12892
  *
12722
- * Price: $0.002 per request.
12893
+ * Price: $0.0012 per request.
12723
12894
  *
12724
12895
  * @example
12725
12896
  * const res = await client.facebook.events({ url: "https://www.facebook.com/events/explore/saint-petersburg-florida/111326725552547" });
@@ -12737,7 +12908,7 @@ declare class FacebookNamespace {
12737
12908
  *
12738
12909
  * Search public Facebook events by keyword and get structured event records (name, schedule, venue, pricing, and attendance) as normalized JSON.
12739
12910
  *
12740
- * Price: $0.002 per request.
12911
+ * Price: $0.0012 per request.
12741
12912
  *
12742
12913
  * @example
12743
12914
  * const res = await client.facebook.eventsSearch({ query: "music festival" });
@@ -12766,7 +12937,7 @@ declare class FacebookNamespace {
12766
12937
  *
12767
12938
  * Fetch recent posts from any public Facebook group by URL: text, author, reactions, and comment counts.
12768
12939
  *
12769
- * Price: $0.002 per request.
12940
+ * Price: $0.0012 per request.
12770
12941
  *
12771
12942
  * @example
12772
12943
  * const res = await client.facebook.groupPosts({ url: "https://www.facebook.com/groups/1270525996445602/" });
@@ -12784,7 +12955,7 @@ declare class FacebookNamespace {
12784
12955
  *
12785
12956
  * Search Facebook Marketplace listings by keyword near a location, filter by price, condition, delivery, recency, and availability, and get title, price, location, and image as normalized JSON.
12786
12957
  *
12787
- * Price: $0.002 per request.
12958
+ * Price: $0.0012 per request.
12788
12959
  *
12789
12960
  * @example
12790
12961
  * const res = await client.facebook.marketplace({ lat: "30.2677", lng: "-97.7475", query: "bike", priceMax: 500, priceMin: 100 });
@@ -12802,7 +12973,7 @@ declare class FacebookNamespace {
12802
12973
  *
12803
12974
  * Fetch full details for a single Facebook Marketplace listing by ID or URL (title, price, location, photos, and attributes) as normalized JSON.
12804
12975
  *
12805
- * Price: $0.002 per request.
12976
+ * Price: $0.0012 per request.
12806
12977
  *
12807
12978
  * @example
12808
12979
  * const res = await client.facebook.marketplaceItem({ url: "https://www.facebook.com/marketplace/item/1656586118821988/" });
@@ -12813,7 +12984,7 @@ declare class FacebookNamespace {
12813
12984
  *
12814
12985
  * Resolve a place name to Facebook Marketplace locations with coordinates and metadata as normalized JSON.
12815
12986
  *
12816
- * Price: $0.002 per request.
12987
+ * Price: $0.0012 per request.
12817
12988
  *
12818
12989
  * @example
12819
12990
  * const res = await client.facebook.marketplaceLocationSearch({ query: "Austin" });
@@ -12824,7 +12995,7 @@ declare class FacebookNamespace {
12824
12995
  *
12825
12996
  * Look up a Facebook Page's public contact details (email, phone, website, and address) by page URL or ID.
12826
12997
  *
12827
- * Price: $0.002 per request.
12998
+ * Price: $0.0012 per request.
12828
12999
  *
12829
13000
  * @example
12830
13001
  * const res = await client.facebook.pageContact({ page: "https://www.facebook.com/joesstonecrab" });
@@ -12835,7 +13006,7 @@ declare class FacebookNamespace {
12835
13006
  *
12836
13007
  * Fetch recent photos posted by any public Facebook page or profile (image URLs, captions, and dimensions) as normalized JSON.
12837
13008
  *
12838
- * Price: $0.002 per request.
13009
+ * Price: $0.0012 per request.
12839
13010
  *
12840
13011
  * @example
12841
13012
  * const res = await client.facebook.photos({ url: "https://www.facebook.com/Spurs" });
@@ -12853,7 +13024,7 @@ declare class FacebookNamespace {
12853
13024
  *
12854
13025
  * Fetch a single Facebook post by URL with its text and engagement counts (likes, comments, shares, views).
12855
13026
  *
12856
- * Price: $0.002 per request.
13027
+ * Price: $0.0012 per request.
12857
13028
  *
12858
13029
  * @example
12859
13030
  * const res = await client.facebook.post({ url: "https://www.facebook.com/reel/2166091230582141/" });
@@ -12864,7 +13035,7 @@ declare class FacebookNamespace {
12864
13035
  *
12865
13036
  * List the comments on a Facebook post by URL with cursor pagination (text, author, reactions, reply count).
12866
13037
  *
12867
- * Price: $0.002 per request.
13038
+ * Price: $0.0012 per request.
12868
13039
  *
12869
13040
  * @example
12870
13041
  * const res = await client.facebook.postComments({ url: "https://www.facebook.com/reel/2166091230582141/" });
@@ -12882,7 +13053,7 @@ declare class FacebookNamespace {
12882
13053
  *
12883
13054
  * Get the spoken-word transcript of any public Facebook video post by URL as normalized JSON.
12884
13055
  *
12885
- * Price: $0.002 per request.
13056
+ * Price: $0.0012 per request.
12886
13057
  *
12887
13058
  * @example
12888
13059
  * const res = await client.facebook.postTranscript({ url: "https://www.facebook.com/reel/2166091230582141/" });
@@ -12893,7 +13064,7 @@ declare class FacebookNamespace {
12893
13064
  *
12894
13065
  * Fetch a Facebook page's public profile (likes, followers, category, about) by URL or handle.
12895
13066
  *
12896
- * Price: $0.002 per request.
13067
+ * Price: $0.0012 per request.
12897
13068
  *
12898
13069
  * @example
12899
13070
  * const res = await client.facebook.profile({ url: "https://www.facebook.com/nike" });
@@ -12904,7 +13075,7 @@ declare class FacebookNamespace {
12904
13075
  *
12905
13076
  * List upcoming and past events hosted by any public Facebook page by URL (name, schedule, venue, and host) as normalized JSON.
12906
13077
  *
12907
- * Price: $0.002 per request.
13078
+ * Price: $0.0012 per request.
12908
13079
  *
12909
13080
  * @example
12910
13081
  * const res = await client.facebook.profileEvents({ url: "https://www.facebook.com/brickyardoldtown" });
@@ -12922,7 +13093,7 @@ declare class FacebookNamespace {
12922
13093
  *
12923
13094
  * List a Facebook page's recent posts by URL or page id with cursor pagination (text, author, publication time, permalink).
12924
13095
  *
12925
- * Price: $0.002 per request.
13096
+ * Price: $0.0012 per request.
12926
13097
  *
12927
13098
  * @example
12928
13099
  * const res = await client.facebook.profilePosts({ url: "https://www.facebook.com/nike" });
@@ -12940,7 +13111,7 @@ declare class FacebookNamespace {
12940
13111
  *
12941
13112
  * List a Facebook page's reels by URL with cursor pagination (caption, view count, permalink, thumbnail).
12942
13113
  *
12943
- * Price: $0.002 per request.
13114
+ * Price: $0.0012 per request.
12944
13115
  *
12945
13116
  * @example
12946
13117
  * const res = await client.facebook.profileReels({ url: "https://www.facebook.com/nike" });
@@ -12951,7 +13122,7 @@ declare class FacebookNamespace {
12951
13122
  *
12952
13123
  * Search the Meta Ad Library for advertisers by keyword and get matching pages: page ID, category, verification, follower counts, and linked Instagram.
12953
13124
  *
12954
- * Price: $0.002 per request.
13125
+ * Price: $0.0012 per request.
12955
13126
  *
12956
13127
  * @example
12957
13128
  * const res = await client.facebook.searchCompanies({ query: "nike" });
@@ -13312,7 +13483,7 @@ declare class GeminiNamespace {
13312
13483
  *
13313
13484
  * Ask Gemini a web-grounded question and receive an answer with source citations.
13314
13485
  *
13315
- * Price: $0.0018 per request.
13486
+ * Price: $0.002 per request.
13316
13487
  *
13317
13488
  * @example
13318
13489
  * const res = await client.gemini.search({ prompt: "What is AnyAPI at getanyapi.com, and what does it offer?" });
@@ -13959,7 +14130,7 @@ declare class GithubNamespace {
13959
14130
  *
13960
14131
  * Fetch a GitHub repository's metadata by URL (stars, forks, language, topics, license, and timestamps).
13961
14132
  *
13962
- * Price: $0.002 per request.
14133
+ * Price: $0.0012 per request.
13963
14134
  *
13964
14135
  * @example
13965
14136
  * const res = await client.github.repository({ url: "https://github.com/facebook/react" });
@@ -13970,7 +14141,7 @@ declare class GithubNamespace {
13970
14141
  *
13971
14142
  * List trending GitHub developers (rank, username, name, avatar, and their most popular repository), optionally filtered by programming language and time range.
13972
14143
  *
13973
- * Price: $0.002 per request.
14144
+ * Price: $0.0012 per request.
13974
14145
  *
13975
14146
  * @example
13976
14147
  * const res = await client.github.trendingDevelopers({ language: "go", since: "weekly" });
@@ -13981,7 +14152,7 @@ declare class GithubNamespace {
13981
14152
  *
13982
14153
  * List GitHub Trending repositories (rank, stars, stars gained today, language, and description), filterable by language and time window.
13983
14154
  *
13984
- * Price: $0.002 per request.
14155
+ * Price: $0.0012 per request.
13985
14156
  *
13986
14157
  * @example
13987
14158
  * const res = await client.github.trendingRepositories({ language: "python", since: "daily" });
@@ -13992,7 +14163,7 @@ declare class GithubNamespace {
13992
14163
  *
13993
14164
  * Fetch a GitHub user's public profile by handle (name, bio, company, location, followers, and repo counts).
13994
14165
  *
13995
- * Price: $0.002 per request.
14166
+ * Price: $0.0012 per request.
13996
14167
  *
13997
14168
  * @example
13998
14169
  * const res = await client.github.user({ handle: "torvalds" });
@@ -14003,7 +14174,7 @@ declare class GithubNamespace {
14003
14174
  *
14004
14175
  * List a GitHub user's public contribution activity by handle (grouped monthly summaries of commits, pull requests, and issues with repository links) for a given year.
14005
14176
  *
14006
- * Price: $0.002 per request.
14177
+ * Price: $0.0012 per request.
14007
14178
  *
14008
14179
  * @example
14009
14180
  * const res = await client.github.userActivity({ handle: "kentcdodds" });
@@ -14021,7 +14192,7 @@ declare class GithubNamespace {
14021
14192
  *
14022
14193
  * Fetch a GitHub user's contribution graph for a year (total contributions plus per-day counts and heatmap intensity).
14023
14194
  *
14024
- * Price: $0.002 per request.
14195
+ * Price: $0.0012 per request.
14025
14196
  *
14026
14197
  * @example
14027
14198
  * const res = await client.github.userContributions({ handle: "torvalds", year: 2024 });
@@ -14032,7 +14203,7 @@ declare class GithubNamespace {
14032
14203
  *
14033
14204
  * List a GitHub user's followers by handle (each follower's login, type, avatar, and profile URL) with pagination.
14034
14205
  *
14035
- * Price: $0.002 per request.
14206
+ * Price: $0.0012 per request.
14036
14207
  *
14037
14208
  * @example
14038
14209
  * const res = await client.github.userFollowers({ handle: "torvalds" });
@@ -14050,7 +14221,7 @@ declare class GithubNamespace {
14050
14221
  *
14051
14222
  * List the GitHub users a given user follows by handle (each account's login, type, avatar, and profile URL) with pagination.
14052
14223
  *
14053
- * Price: $0.002 per request.
14224
+ * Price: $0.0012 per request.
14054
14225
  *
14055
14226
  * @example
14056
14227
  * const res = await client.github.userFollowing({ handle: "kentcdodds" });
@@ -14068,7 +14239,7 @@ declare class GithubNamespace {
14068
14239
  *
14069
14240
  * List a GitHub user's public pull requests by handle (title, repository, state, creation date, and URL) with optional date filtering and pagination.
14070
14241
  *
14071
- * Price: $0.002 per request.
14242
+ * Price: $0.0012 per request.
14072
14243
  *
14073
14244
  * @example
14074
14245
  * const res = await client.github.userPullRequests({ handle: "torvalds" });
@@ -14086,7 +14257,7 @@ declare class GithubNamespace {
14086
14257
  *
14087
14258
  * List a GitHub user's public repositories (name, description, language, stars, and forks) with sorting and cursor pagination.
14088
14259
  *
14089
- * Price: $0.002 per request.
14260
+ * Price: $0.0012 per request.
14090
14261
  *
14091
14262
  * @example
14092
14263
  * const res = await client.github.userRepositories({ handle: "torvalds" });
@@ -14780,7 +14951,7 @@ interface GoogleSearchInput {
14780
14951
  */
14781
14952
  query: string;
14782
14953
  /**
14783
- * Set true if you intend to page through results. The cheapest source for this search cannot return a nextCursor, so by default a single call may come back with no way to continue; setting this routes to a source that can page, at a higher price per request.
14954
+ * Set true if you intend to page through results. Every source for this search returns a nextCursor, so this changes nothing about the price or which source serves you; it stays supported so callers that already send it keep working.
14784
14955
  */
14785
14956
  requireCursor?: boolean;
14786
14957
  /**
@@ -14976,7 +15147,7 @@ declare class GoogleNamespace {
14976
15147
  *
14977
15148
  * Ask Google AI Mode a prompt and receive the cited answer it generates. AI Mode composes the answer at search time, so repeat calls on one prompt can differ in wording and in which sources are cited.
14978
15149
  *
14979
- * Price: $0.00063 per request.
15150
+ * Price: $0.0007 per request.
14980
15151
  *
14981
15152
  * @example
14982
15153
  * const res = await client.google.aiMode({ prompt: "What is AnyAPI at getanyapi.com, and what does it offer?" });
@@ -15064,7 +15235,7 @@ declare class GoogleNamespace {
15064
15235
  *
15065
15236
  * Run a Google web search and get the organic results (title, link, snippet, position) as clean JSON. Returns about 10 results per call - Google stopped honoring bulk result counts in September 2025, so a limit above 10 is accepted but returns no more than a page. Pass the returned nextCursor back as cursor to walk further, or use google.search_100 for up to 100 ranked results in one call, which is cheaper past roughly 20 results.
15066
15237
  *
15067
- * Price: $0.00063 per request.
15238
+ * Price: $0.0009 per request.
15068
15239
  *
15069
15240
  * @example
15070
15241
  * const res = await client.google.search({ query: "best coffee maker", gl: "us", hl: "en", limit: 10 });
@@ -15397,7 +15568,7 @@ declare class GoogleAdsNamespace {
15397
15568
  *
15398
15569
  * 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.
15399
15570
  *
15400
- * Price: $0.002 per request.
15571
+ * Price: $0.0012 per request.
15401
15572
  *
15402
15573
  * @example
15403
15574
  * const res = await client.googleAds.adDetails({ url: "https://adstransparency.google.com/advertiser/AR01614014350098432001/creative/CR10449491775734153217" });
@@ -15408,7 +15579,7 @@ declare class GoogleAdsNamespace {
15408
15579
  *
15409
15580
  * Search the Google Ads Transparency Center for advertisers by keyword and get matching advertiser IDs, regions, and estimated ad counts as clean JSON.
15410
15581
  *
15411
- * Price: $0.002 per request.
15582
+ * Price: $0.0012 per request.
15412
15583
  *
15413
15584
  * @example
15414
15585
  * const res = await client.googleAds.advertiserSearch({ query: "lululemon" });
@@ -15419,7 +15590,7 @@ declare class GoogleAdsNamespace {
15419
15590
  *
15420
15591
  * 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.
15421
15592
  *
15422
- * Price: $0.002 per request.
15593
+ * Price: $0.0012 per request.
15423
15594
  *
15424
15595
  * @example
15425
15596
  * const res = await client.googleAds.companyAds({ domain: "lululemon.com" });
@@ -16219,27 +16390,14 @@ interface InstagramEmbedData {
16219
16390
  */
16220
16391
  interface InstagramFollowersInput {
16221
16392
  /**
16222
- * Opaque pagination cursor from a previous response's nextCursor. Omit for the first page; pass it to fetch the next page of followers.
16393
+ * Opaque pagination cursor from a previous response's nextCursor. Omit for the first page; pass it to fetch the next page of followers. A page holds up to 50 followers.
16223
16394
  */
16224
16395
  cursor?: string;
16225
- /**
16226
- * How many followers you want (50-1000). By default results come back in cheap pages of up to ~50: follow the response's nextCursor for more. With requireSinglePage true, up to this many are returned in one (pricier) call.
16227
- * Range: minimum 50, maximum 1000.
16228
- */
16229
- limit?: number;
16230
16396
  /**
16231
16397
  * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
16232
16398
  * Range: minimum 1.
16233
16399
  */
16234
16400
  preferLatencyUnderMs?: number;
16235
- /**
16236
- * Set true if you intend to page through followers, so the request is only served by a source that can return a nextCursor. The bulk source cannot page, and a paging source may cost more per request. Cannot be combined with requireSinglePage.
16237
- */
16238
- requireCursor?: boolean;
16239
- /**
16240
- * Set true to get up to limit followers in a single response instead of cheap pages, served by a bulk provider at a higher price.
16241
- */
16242
- requireSinglePage?: boolean;
16243
16401
  /**
16244
16402
  * The Instagram username, user ID, or profile URL whose followers to list (e.g. natgeo).
16245
16403
  */
@@ -16294,27 +16452,14 @@ interface InstagramFollowersData {
16294
16452
  */
16295
16453
  interface InstagramFollowingInput {
16296
16454
  /**
16297
- * Opaque pagination cursor from a previous response's nextCursor. Omit for the first page; pass it to fetch the next page.
16455
+ * Opaque pagination cursor from a previous response's nextCursor. Omit for the first page; pass it to fetch the next page. A page holds up to 50 accounts.
16298
16456
  */
16299
16457
  cursor?: string;
16300
- /**
16301
- * How many accounts you want (50-1000). By default results come back in cheap pages of up to ~50: follow the response's nextCursor for more. With requireSinglePage true, up to this many are returned in one (pricier) call.
16302
- * Range: minimum 50, maximum 1000.
16303
- */
16304
- limit?: number;
16305
16458
  /**
16306
16459
  * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
16307
16460
  * Range: minimum 1.
16308
16461
  */
16309
16462
  preferLatencyUnderMs?: number;
16310
- /**
16311
- * Set true if you intend to page through the following list, so the request is only served by a source that can return a nextCursor. The bulk source cannot page, and a paging source may cost more per request. Cannot be combined with requireSinglePage.
16312
- */
16313
- requireCursor?: boolean;
16314
- /**
16315
- * Set true to get up to limit accounts in a single response instead of cheap pages, served by a bulk provider at a higher price.
16316
- */
16317
- requireSinglePage?: boolean;
16318
16463
  /**
16319
16464
  * The Instagram username, user ID, or profile URL whose following list to fetch (e.g. natgeo).
16320
16465
  */
@@ -16671,6 +16816,201 @@ interface InstagramHighlightDetailData {
16671
16816
  title: string;
16672
16817
  [extra: string]: unknown;
16673
16818
  }
16819
+ /**
16820
+ * Input for Instagram Location Posts (instagram.location_posts).
16821
+ */
16822
+ interface InstagramLocationPostsInput {
16823
+ /**
16824
+ * Pagination cursor from a previous response's nextCursor.
16825
+ */
16826
+ cursor?: string;
16827
+ /**
16828
+ * Instagram location id, as returned by instagram.search_locations.
16829
+ */
16830
+ locationId: string;
16831
+ /**
16832
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
16833
+ * Range: minimum 1.
16834
+ */
16835
+ preferLatencyUnderMs?: number;
16836
+ /**
16837
+ * Order the posts by Instagram's top ranking or by newest first. Defaults to ranked.
16838
+ * One of: ranked, recent.
16839
+ */
16840
+ sort?: "ranked" | "recent";
16841
+ }
16842
+ interface InstagramLocationPostsPost {
16843
+ /**
16844
+ * Instagram's generated accessibility description of the media.
16845
+ */
16846
+ altText?: string;
16847
+ /**
16848
+ * Username of the account that posted it, without the leading @. Populated whenever the provider has data for the entity.
16849
+ */
16850
+ author: string;
16851
+ /**
16852
+ * The author's numeric Instagram account id, as a string.
16853
+ */
16854
+ authorId?: string;
16855
+ /**
16856
+ * Whether the author's account is private.
16857
+ */
16858
+ authorPrivate?: boolean;
16859
+ /**
16860
+ * Whether the author carries Instagram's verified badge.
16861
+ */
16862
+ authorVerified?: boolean;
16863
+ /**
16864
+ * Author's profile picture URL, as Instagram's CDN serves it.
16865
+ * Format: uri.
16866
+ */
16867
+ avatarUrl?: string;
16868
+ /**
16869
+ * Post caption text.
16870
+ */
16871
+ caption: string;
16872
+ /**
16873
+ * Whether the caption has been edited since posting.
16874
+ */
16875
+ captionEdited?: boolean;
16876
+ /**
16877
+ * Number of slides, present on carousel posts only.
16878
+ */
16879
+ carouselCount?: number;
16880
+ /**
16881
+ * Accounts listed as coauthors of the post.
16882
+ */
16883
+ coauthors?: InstagramLocationPostsCoauthor[];
16884
+ /**
16885
+ * Number of comments on the post.
16886
+ */
16887
+ comments: number;
16888
+ /**
16889
+ * Whether the author has hidden the like and view counts.
16890
+ */
16891
+ countsHidden?: boolean;
16892
+ /**
16893
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
16894
+ */
16895
+ createdUtc: number;
16896
+ /**
16897
+ * Whether the video carries an audio track.
16898
+ */
16899
+ hasAudio?: boolean;
16900
+ /**
16901
+ * Media height in pixels.
16902
+ */
16903
+ height?: number;
16904
+ /**
16905
+ * The post's numeric Instagram media ID, as a string. Populated whenever the provider has data for the entity.
16906
+ */
16907
+ id: string;
16908
+ /**
16909
+ * Post image or video thumbnail URL, as Instagram's CDN serves it. Populated whenever the provider has data for the entity.
16910
+ * Format: uri.
16911
+ * Present whenever the upstream returns this record.
16912
+ */
16913
+ image?: string;
16914
+ /**
16915
+ * Number of likes on the post.
16916
+ */
16917
+ likes: number;
16918
+ /**
16919
+ * Instagram location id the post is tagged at.
16920
+ */
16921
+ locationId?: string;
16922
+ /**
16923
+ * Latitude of the tagged location, in decimal degrees.
16924
+ */
16925
+ locationLat?: number;
16926
+ /**
16927
+ * Longitude of the tagged location, in decimal degrees.
16928
+ */
16929
+ locationLng?: number;
16930
+ /**
16931
+ * Name of the location the post is tagged at.
16932
+ */
16933
+ locationName?: string;
16934
+ /**
16935
+ * What the post is: photo, video or carousel.
16936
+ */
16937
+ mediaType?: string;
16938
+ /**
16939
+ * Whether the post is tagged as a paid partnership.
16940
+ */
16941
+ paidPartnership?: boolean;
16942
+ /**
16943
+ * Instagram's own surface label for the post, such as feed, clips or carousel_container.
16944
+ */
16945
+ productType?: string;
16946
+ /**
16947
+ * The post's short code, the segment Instagram puts in its URL.
16948
+ */
16949
+ shortcode?: string;
16950
+ /**
16951
+ * Accounts tagged in the media.
16952
+ */
16953
+ taggedUsers?: InstagramLocationPostsTaggedUser[];
16954
+ /**
16955
+ * Canonical URL of the post. Populated whenever the provider has data for the entity.
16956
+ * Format: uri.
16957
+ */
16958
+ url: string;
16959
+ /**
16960
+ * Direct video file URL, present on video posts and reels only.
16961
+ * Format: uri.
16962
+ */
16963
+ videoUrl?: string;
16964
+ /**
16965
+ * Media width in pixels.
16966
+ */
16967
+ width?: number;
16968
+ [extra: string]: unknown;
16969
+ }
16970
+ interface InstagramLocationPostsCoauthor {
16971
+ /**
16972
+ * Coauthor's profile picture URL, as Instagram's CDN serves it.
16973
+ * Format: uri.
16974
+ */
16975
+ avatarUrl?: string;
16976
+ /**
16977
+ * Instagram's numeric account id, as a string.
16978
+ */
16979
+ userId?: string;
16980
+ /**
16981
+ * Instagram username without the leading @.
16982
+ */
16983
+ username: string;
16984
+ [extra: string]: unknown;
16985
+ }
16986
+ interface InstagramLocationPostsTaggedUser {
16987
+ /**
16988
+ * Account display name.
16989
+ */
16990
+ displayName?: string;
16991
+ /**
16992
+ * Instagram's numeric account id, as a string.
16993
+ */
16994
+ userId?: string;
16995
+ /**
16996
+ * Instagram username without the leading @.
16997
+ */
16998
+ username: string;
16999
+ [extra: string]: unknown;
17000
+ }
17001
+ /**
17002
+ * The `data` payload of Instagram Location Posts (instagram.location_posts).
17003
+ */
17004
+ interface InstagramLocationPostsData {
17005
+ /**
17006
+ * Opaque cursor for the next page of posts, or null when there are no more. Pass it back as cursor to continue.
17007
+ */
17008
+ nextCursor: string | null;
17009
+ /**
17010
+ * Public posts tagged at the location. Populated whenever the provider has data for the entity.
17011
+ */
17012
+ posts: InstagramLocationPostsPost[];
17013
+ }
16674
17014
  /**
16675
17015
  * Input for Instagram Media Transcript (instagram.media_transcript).
16676
17016
  */
@@ -16809,6 +17149,66 @@ interface InstagramPostCommentsData {
16809
17149
  */
16810
17150
  nextCursor: string | null;
16811
17151
  }
17152
+ /**
17153
+ * Input for Instagram Post Likers (instagram.post_likers).
17154
+ */
17155
+ interface InstagramPostLikersInput {
17156
+ /**
17157
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
17158
+ * Range: minimum 1.
17159
+ */
17160
+ preferLatencyUnderMs?: number;
17161
+ /**
17162
+ * Canonical URL of a public Instagram post or reel.
17163
+ * Format: uri.
17164
+ */
17165
+ url: string;
17166
+ }
17167
+ interface InstagramPostLikersLiker {
17168
+ /**
17169
+ * Profile picture URL, as Instagram's CDN serves it.
17170
+ * Format: uri.
17171
+ */
17172
+ avatarUrl: string;
17173
+ /**
17174
+ * Account display name.
17175
+ */
17176
+ displayName: string;
17177
+ /**
17178
+ * Timestamp of the account's most recent story. UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
17179
+ */
17180
+ latestStoryUtc?: number;
17181
+ /**
17182
+ * Whether the account is private.
17183
+ */
17184
+ private: boolean;
17185
+ /**
17186
+ * Instagram's numeric account id, as a string.
17187
+ */
17188
+ userId: string;
17189
+ /**
17190
+ * Instagram username without the leading @. Populated whenever the provider has data for the entity.
17191
+ */
17192
+ username: string;
17193
+ /**
17194
+ * Whether the account carries Instagram's verified badge.
17195
+ */
17196
+ verified: boolean;
17197
+ [extra: string]: unknown;
17198
+ }
17199
+ /**
17200
+ * The `data` payload of Instagram Post Likers (instagram.post_likers).
17201
+ */
17202
+ interface InstagramPostLikersData {
17203
+ /**
17204
+ * One page of accounts that liked the post. A single call returns one page; it does not walk the whole liker list. Populated whenever the provider has data for the entity.
17205
+ */
17206
+ likers: InstagramPostLikersLiker[];
17207
+ /**
17208
+ * Total number of likes on the post, which can exceed the number of likers returned in this page.
17209
+ */
17210
+ totalLikes: number;
17211
+ }
16812
17212
  /**
16813
17213
  * Input for Instagram Profile (instagram.profile).
16814
17214
  */
@@ -17324,6 +17724,60 @@ interface InstagramSearchHashtagData {
17324
17724
  */
17325
17725
  posts: InstagramSearchHashtagPost[];
17326
17726
  }
17727
+ /**
17728
+ * Input for Instagram Location Search (instagram.search_locations).
17729
+ */
17730
+ interface InstagramSearchLocationsInput {
17731
+ /**
17732
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
17733
+ * Range: minimum 1.
17734
+ */
17735
+ preferLatencyUnderMs?: number;
17736
+ /**
17737
+ * Place name, address or city to search for.
17738
+ */
17739
+ query: string;
17740
+ }
17741
+ interface InstagramSearchLocationsLocation {
17742
+ /**
17743
+ * Street address of the place.
17744
+ */
17745
+ address?: string;
17746
+ /**
17747
+ * City the place sits in.
17748
+ */
17749
+ city?: string;
17750
+ /**
17751
+ * Instagram location id. Pass it to instagram.location_posts as locationId. Populated whenever the provider has data for the entity.
17752
+ */
17753
+ id: string;
17754
+ /**
17755
+ * Latitude in decimal degrees.
17756
+ */
17757
+ latitude: number;
17758
+ /**
17759
+ * Longitude in decimal degrees.
17760
+ */
17761
+ longitude: number;
17762
+ /**
17763
+ * Full place name, usually including city and country. Populated whenever the provider has data for the entity.
17764
+ */
17765
+ name: string;
17766
+ /**
17767
+ * Place name without the city and country suffix.
17768
+ */
17769
+ shortName?: string;
17770
+ [extra: string]: unknown;
17771
+ }
17772
+ /**
17773
+ * The `data` payload of Instagram Location Search (instagram.search_locations).
17774
+ */
17775
+ interface InstagramSearchLocationsData {
17776
+ /**
17777
+ * Instagram locations matching the keyword, best match first. Populated whenever the provider has data for the entity.
17778
+ */
17779
+ locations: InstagramSearchLocationsLocation[];
17780
+ }
17327
17781
  /**
17328
17782
  * Input for Instagram Profile Search (instagram.search_profiles).
17329
17783
  */
@@ -17383,6 +17837,57 @@ interface InstagramSearchProfilesData {
17383
17837
  */
17384
17838
  profiles: InstagramSearchProfilesProfile[];
17385
17839
  }
17840
+ /**
17841
+ * Input for Instagram Similar Profiles (instagram.similar_profiles).
17842
+ */
17843
+ interface InstagramSimilarProfilesInput {
17844
+ /**
17845
+ * Instagram username without the leading @.
17846
+ */
17847
+ handle: string;
17848
+ /**
17849
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
17850
+ * Range: minimum 1.
17851
+ */
17852
+ preferLatencyUnderMs?: number;
17853
+ }
17854
+ interface InstagramSimilarProfilesProfile {
17855
+ /**
17856
+ * Profile picture URL, as Instagram's CDN serves it.
17857
+ * Format: uri.
17858
+ */
17859
+ avatarUrl: string;
17860
+ /**
17861
+ * Account display name.
17862
+ */
17863
+ displayName: string;
17864
+ /**
17865
+ * Whether the account is private.
17866
+ */
17867
+ private: boolean;
17868
+ /**
17869
+ * Instagram's numeric account id, as a string.
17870
+ */
17871
+ userId: string;
17872
+ /**
17873
+ * Instagram username without the leading @. Populated whenever the provider has data for the entity.
17874
+ */
17875
+ username: string;
17876
+ /**
17877
+ * Whether the account carries Instagram's verified badge.
17878
+ */
17879
+ verified: boolean;
17880
+ [extra: string]: unknown;
17881
+ }
17882
+ /**
17883
+ * The `data` payload of Instagram Similar Profiles (instagram.similar_profiles).
17884
+ */
17885
+ interface InstagramSimilarProfilesData {
17886
+ /**
17887
+ * Accounts Instagram recommends as similar to the requested profile. Populated whenever the provider has data for the entity.
17888
+ */
17889
+ profiles: InstagramSimilarProfilesProfile[];
17890
+ }
17386
17891
  /**
17387
17892
  * Input for Instagram Stories (full) (instagram.stories_full).
17388
17893
  */
@@ -17852,6 +18357,215 @@ interface InstagramUserReelsData {
17852
18357
  */
17853
18358
  reels: InstagramUserReelsReel[];
17854
18359
  }
18360
+ /**
18361
+ * Input for Instagram User Reposts (instagram.user_reposts).
18362
+ */
18363
+ interface InstagramUserRepostsInput {
18364
+ /**
18365
+ * Pagination cursor from a previous response's nextCursor.
18366
+ */
18367
+ cursor?: string;
18368
+ /**
18369
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
18370
+ * Range: minimum 1.
18371
+ */
18372
+ preferLatencyUnderMs?: number;
18373
+ /**
18374
+ * Instagram's numeric account id, as returned by instagram.profile.
18375
+ */
18376
+ userId: string;
18377
+ }
18378
+ interface InstagramUserRepostsPost {
18379
+ /**
18380
+ * Instagram's generated accessibility description of the media.
18381
+ */
18382
+ altText?: string;
18383
+ /**
18384
+ * Username of the account that posted it, without the leading @. Populated whenever the provider has data for the entity.
18385
+ */
18386
+ author: string;
18387
+ /**
18388
+ * The author's numeric Instagram account id, as a string.
18389
+ */
18390
+ authorId?: string;
18391
+ /**
18392
+ * The author's display name.
18393
+ */
18394
+ authorName?: string;
18395
+ /**
18396
+ * Whether the author's account is private.
18397
+ */
18398
+ authorPrivate?: boolean;
18399
+ /**
18400
+ * Whether the author carries Instagram's verified badge.
18401
+ */
18402
+ authorVerified?: boolean;
18403
+ /**
18404
+ * Author's profile picture URL, as Instagram's CDN serves it.
18405
+ * Format: uri.
18406
+ */
18407
+ avatarUrl?: string;
18408
+ /**
18409
+ * Post caption text.
18410
+ */
18411
+ caption: string;
18412
+ /**
18413
+ * Whether the caption has been edited since posting.
18414
+ */
18415
+ captionEdited?: boolean;
18416
+ /**
18417
+ * Number of slides, present on carousel posts only.
18418
+ */
18419
+ carouselCount?: number;
18420
+ /**
18421
+ * Accounts listed as coauthors of the post.
18422
+ */
18423
+ coauthors?: InstagramUserRepostsCoauthor[];
18424
+ /**
18425
+ * Number of comments on the post.
18426
+ */
18427
+ comments: number;
18428
+ /**
18429
+ * Whether the author has hidden the like and view counts.
18430
+ */
18431
+ countsHidden?: boolean;
18432
+ /**
18433
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
18434
+ */
18435
+ createdUtc: number;
18436
+ /**
18437
+ * Whether the video carries an audio track.
18438
+ */
18439
+ hasAudio?: boolean;
18440
+ /**
18441
+ * Media height in pixels.
18442
+ */
18443
+ height?: number;
18444
+ /**
18445
+ * The post's numeric Instagram media ID, as a string. Populated whenever the provider has data for the entity.
18446
+ */
18447
+ id: string;
18448
+ /**
18449
+ * Post image or video thumbnail URL, as Instagram's CDN serves it. Populated whenever the provider has data for the entity.
18450
+ * Format: uri.
18451
+ * Present whenever the upstream returns this record.
18452
+ */
18453
+ image?: string;
18454
+ /**
18455
+ * Number of likes on the post.
18456
+ */
18457
+ likes: number;
18458
+ /**
18459
+ * Instagram location id the post is tagged at.
18460
+ */
18461
+ locationId?: string;
18462
+ /**
18463
+ * Latitude of the tagged location, in decimal degrees.
18464
+ */
18465
+ locationLat?: number;
18466
+ /**
18467
+ * Longitude of the tagged location, in decimal degrees.
18468
+ */
18469
+ locationLng?: number;
18470
+ /**
18471
+ * Name of the location the post is tagged at.
18472
+ */
18473
+ locationName?: string;
18474
+ /**
18475
+ * What the post is: photo, video or carousel.
18476
+ */
18477
+ mediaType?: string;
18478
+ /**
18479
+ * Whether the post is tagged as a paid partnership.
18480
+ */
18481
+ paidPartnership?: boolean;
18482
+ /**
18483
+ * Instagram's own surface label for the post, such as feed, clips or carousel_container.
18484
+ */
18485
+ productType?: string;
18486
+ /**
18487
+ * Number of times the post has been reshared, when Instagram reports it.
18488
+ */
18489
+ reshares?: number;
18490
+ /**
18491
+ * The post's short code, the segment Instagram puts in its URL.
18492
+ */
18493
+ shortcode?: string;
18494
+ /**
18495
+ * Accounts tagged in the media.
18496
+ */
18497
+ taggedUsers?: InstagramUserRepostsTaggedUser[];
18498
+ /**
18499
+ * Canonical URL of the post. Populated whenever the provider has data for the entity.
18500
+ * Format: uri.
18501
+ */
18502
+ url: string;
18503
+ /**
18504
+ * Video length in seconds, present on video posts and reels only.
18505
+ */
18506
+ videoDurationSeconds?: number;
18507
+ /**
18508
+ * Direct video file URL, present on video posts and reels only.
18509
+ * Format: uri.
18510
+ */
18511
+ videoUrl?: string;
18512
+ /**
18513
+ * Play count, present on video posts and reels only.
18514
+ */
18515
+ views?: number;
18516
+ /**
18517
+ * Media width in pixels.
18518
+ */
18519
+ width?: number;
18520
+ [extra: string]: unknown;
18521
+ }
18522
+ interface InstagramUserRepostsCoauthor {
18523
+ /**
18524
+ * Account display name.
18525
+ */
18526
+ displayName?: string;
18527
+ /**
18528
+ * Instagram's numeric account id, as a string.
18529
+ */
18530
+ userId?: string;
18531
+ /**
18532
+ * Instagram username without the leading @.
18533
+ */
18534
+ username: string;
18535
+ /**
18536
+ * Whether the account carries Instagram's verified badge.
18537
+ */
18538
+ verified?: boolean;
18539
+ [extra: string]: unknown;
18540
+ }
18541
+ interface InstagramUserRepostsTaggedUser {
18542
+ /**
18543
+ * Account display name.
18544
+ */
18545
+ displayName?: string;
18546
+ /**
18547
+ * Instagram's numeric account id, as a string.
18548
+ */
18549
+ userId?: string;
18550
+ /**
18551
+ * Instagram username without the leading @.
18552
+ */
18553
+ username: string;
18554
+ [extra: string]: unknown;
18555
+ }
18556
+ /**
18557
+ * The `data` payload of Instagram User Reposts (instagram.user_reposts).
18558
+ */
18559
+ interface InstagramUserRepostsData {
18560
+ /**
18561
+ * Opaque cursor for the next page of reposts, or null when there are no more. Pass it back as cursor to continue.
18562
+ */
18563
+ nextCursor: string | null;
18564
+ /**
18565
+ * Posts the account has reposted to its feed, newest first. Populated whenever the provider has data for the entity.
18566
+ */
18567
+ posts: InstagramUserRepostsPost[];
18568
+ }
17855
18569
  /**
17856
18570
  * Typed methods for the instagram platform. Attached to the AnyAPI client as
17857
18571
  * `client.instagram`.
@@ -17864,7 +18578,7 @@ declare class InstagramNamespace {
17864
18578
  *
17865
18579
  * List Instagram reels that use a given audio track by audio id.
17866
18580
  *
17867
- * Price: $0.002 per request.
18581
+ * Price: $0.0012 per request.
17868
18582
  *
17869
18583
  * @example
17870
18584
  * const res = await client.instagram.audioReels({ audioId: "1392969992841787" });
@@ -17882,7 +18596,7 @@ declare class InstagramNamespace {
17882
18596
  *
17883
18597
  * Fetch an Instagram account's core public profile fields (followers, posts, bio, verification) by user id.
17884
18598
  *
17885
- * Price: $0.0015 per request.
18599
+ * Price: $0.0012 per request.
17886
18600
  *
17887
18601
  * @example
17888
18602
  * const res = await client.instagram.basicProfile({ userId: "314216" });
@@ -17893,7 +18607,7 @@ declare class InstagramNamespace {
17893
18607
  *
17894
18608
  * List the replies to an Instagram comment with cursor pagination (text, author, likes).
17895
18609
  *
17896
- * Price: $0.0015 per request.
18610
+ * Price: $0.0012 per request.
17897
18611
  *
17898
18612
  * @example
17899
18613
  * const res = await client.instagram.commentReplies({ commentId: "18126632131325044", url: "https://www.instagram.com/p/C8rKmYvsrck/" });
@@ -17911,7 +18625,7 @@ declare class InstagramNamespace {
17911
18625
  *
17912
18626
  * Fetch the public embed HTML for an Instagram profile by handle.
17913
18627
  *
17914
- * Price: $0.002 per request.
18628
+ * Price: $0.0012 per request.
17915
18629
  *
17916
18630
  * @example
17917
18631
  * const res = await client.instagram.embed({ handle: "nasa" });
@@ -17925,7 +18639,7 @@ declare class InstagramNamespace {
17925
18639
  * Price: $0.0015 per request.
17926
18640
  *
17927
18641
  * @example
17928
- * const res = await client.instagram.followers({ username: "nasa", limit: 50 });
18642
+ * const res = await client.instagram.followers({ username: "nasa" });
17929
18643
  */
17930
18644
  followers(input: InstagramFollowersInput, options?: RequestOptions): Promise<RunResult<InstagramFollowersData>>;
17931
18645
  /**
@@ -17943,7 +18657,7 @@ declare class InstagramNamespace {
17943
18657
  * Price: $0.0015 per request.
17944
18658
  *
17945
18659
  * @example
17946
- * const res = await client.instagram.following({ username: "nasa", limit: 50 });
18660
+ * const res = await client.instagram.following({ username: "nasa" });
17947
18661
  */
17948
18662
  following(input: InstagramFollowingInput, options?: RequestOptions): Promise<RunResult<InstagramFollowingData>>;
17949
18663
  /**
@@ -18005,18 +18719,36 @@ declare class InstagramNamespace {
18005
18719
  *
18006
18720
  * Fetch the details and media items of a single Instagram story highlight by id.
18007
18721
  *
18008
- * Price: $0.002 per request.
18722
+ * Price: $0.0012 per request.
18009
18723
  *
18010
18724
  * @example
18011
18725
  * const res = await client.instagram.highlightDetail({ id: "18201653992314974" });
18012
18726
  */
18013
18727
  highlightDetail(input: InstagramHighlightDetailInput, options?: RequestOptions): Promise<RunResult<InstagramHighlightDetailData>>;
18728
+ /**
18729
+ * Instagram Location Posts
18730
+ *
18731
+ * List public Instagram posts tagged at a location, ranked or most recent, with cursor pagination.
18732
+ *
18733
+ * Price: $0.0012 per request.
18734
+ *
18735
+ * @example
18736
+ * const res = await client.instagram.locationPosts({ locationId: "103912118089363", sort: "recent" });
18737
+ */
18738
+ locationPosts(input: InstagramLocationPostsInput, options?: RequestOptions): Promise<RunResult<InstagramLocationPostsData>>;
18739
+ /**
18740
+ * Iterate every result of Instagram Location Posts across pages.
18741
+ *
18742
+ * Yields items directly; call `.pages()` on the return value to walk whole
18743
+ * result pages instead (each carries its own costUsd).
18744
+ */
18745
+ iterLocationPosts(input: InstagramLocationPostsInput, options?: RequestOptions): Paginator<InstagramLocationPostsPost, RunResult<InstagramLocationPostsData>>;
18014
18746
  /**
18015
18747
  * Instagram Media Transcript
18016
18748
  *
18017
18749
  * Get the spoken-audio transcript text for an Instagram post or reel by URL.
18018
18750
  *
18019
- * Price: $0.002 per request.
18751
+ * Price: $0.0012 per request.
18020
18752
  *
18021
18753
  * @example
18022
18754
  * const res = await client.instagram.mediaTranscript({ url: "https://www.instagram.com/reel/DHsD6HGqJhp/" });
@@ -18027,7 +18759,7 @@ declare class InstagramNamespace {
18027
18759
  *
18028
18760
  * Fetch a single Instagram post or reel by URL (media URLs, like count, owner, type) as normalized JSON.
18029
18761
  *
18030
- * Price: $0.0015 per request.
18762
+ * Price: $0.0012 per request.
18031
18763
  *
18032
18764
  * @example
18033
18765
  * const res = await client.instagram.post({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/" });
@@ -18038,7 +18770,7 @@ declare class InstagramNamespace {
18038
18770
  *
18039
18771
  * List the comments on an Instagram post or reel by URL with cursor pagination (text, author, likes).
18040
18772
  *
18041
- * Price: $0.00072 per request.
18773
+ * Price: $0.0008 per request.
18042
18774
  *
18043
18775
  * @example
18044
18776
  * const res = await client.instagram.postComments({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/" });
@@ -18051,12 +18783,23 @@ declare class InstagramNamespace {
18051
18783
  * result pages instead (each carries its own costUsd).
18052
18784
  */
18053
18785
  iterPostComments(input: InstagramPostCommentsInput, options?: RequestOptions): Paginator<InstagramPostCommentsComment, RunResult<InstagramPostCommentsData>>;
18786
+ /**
18787
+ * Instagram Post Likers
18788
+ *
18789
+ * List the accounts that liked a public Instagram post, one page of likers per call, with each liker's handle, display name, verified flag and avatar.
18790
+ *
18791
+ * Price: $0.0024 per request.
18792
+ *
18793
+ * @example
18794
+ * const res = await client.instagram.postLikers({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/" });
18795
+ */
18796
+ postLikers(input: InstagramPostLikersInput, options?: RequestOptions): Promise<RunResult<InstagramPostLikersData>>;
18054
18797
  /**
18055
18798
  * Instagram Profile
18056
18799
  *
18057
18800
  * Fetch an Instagram account's public profile (followers, posts, bio, verification) by handle.
18058
18801
  *
18059
- * Price: $0.00045 per request.
18802
+ * Price: $0.0005 per request.
18060
18803
  *
18061
18804
  * @example
18062
18805
  * const res = await client.instagram.profile({ handle: "nasa" });
@@ -18089,7 +18832,7 @@ declare class InstagramNamespace {
18089
18832
  *
18090
18833
  * Search Instagram Reels by keyword and get matching reels (caption, likes, comments, creator, and duration). Instagram does not return view or play counts in reels search results. Results are relevance-ranked, not chronological. Paging tops out around 110 reels per query (11 pages of 10).
18091
18834
  *
18092
- * Price: $0.0015 per request.
18835
+ * Price: $0.0012 per request.
18093
18836
  *
18094
18837
  * @example
18095
18838
  * const res = await client.instagram.reelsSearch({ query: "travel" });
@@ -18111,7 +18854,7 @@ declare class InstagramNamespace {
18111
18854
  *
18112
18855
  * Search posts under an Instagram hashtag through a web search index rather than Instagram's own hashtag feed. That is what lets it filter by date and media type and return reels whose like counts have settled, and it is also why results skew older (median around three months) and stop at roughly 110 per hashtag. If that web search index is unavailable, a first-page request that sets no date and no media type is served from Instagram's own live top feed instead. For Instagram's own live ranking of a tag use instagram.hashtag_top_posts, and for the chronological feed use instagram.hashtag_recent_posts.
18113
18856
  *
18114
- * Price: $0.002 per request.
18857
+ * Price: $0.0012 per request.
18115
18858
  *
18116
18859
  * @example
18117
18860
  * const res = await client.instagram.searchHashtag({ hashtag: "skincare", datePosted: "last-month", mediaType: "reel" });
@@ -18124,12 +18867,23 @@ declare class InstagramNamespace {
18124
18867
  * result pages instead (each carries its own costUsd).
18125
18868
  */
18126
18869
  iterSearchHashtag(input: InstagramSearchHashtagInput, options?: RequestOptions): Paginator<InstagramSearchHashtagPost, RunResult<InstagramSearchHashtagData>>;
18870
+ /**
18871
+ * Instagram Location Search
18872
+ *
18873
+ * Search Instagram locations by keyword and return each place's id, name, address and coordinates.
18874
+ *
18875
+ * Price: $0.0024 per request.
18876
+ *
18877
+ * @example
18878
+ * const res = await client.instagram.searchLocations({ query: "Eiffel Tower" });
18879
+ */
18880
+ searchLocations(input: InstagramSearchLocationsInput, options?: RequestOptions): Promise<RunResult<InstagramSearchLocationsData>>;
18127
18881
  /**
18128
18882
  * Instagram Profile Search
18129
18883
  *
18130
18884
  * Search public Instagram profiles by a bio or caption keyword.
18131
18885
  *
18132
- * Price: $0.002 per request.
18886
+ * Price: $0.0012 per request.
18133
18887
  *
18134
18888
  * @example
18135
18889
  * const res = await client.instagram.searchProfiles({ query: "coffee roaster" });
@@ -18142,6 +18896,17 @@ declare class InstagramNamespace {
18142
18896
  * result pages instead (each carries its own costUsd).
18143
18897
  */
18144
18898
  iterSearchProfiles(input: InstagramSearchProfilesInput, options?: RequestOptions): Paginator<InstagramSearchProfilesProfile, RunResult<InstagramSearchProfilesData>>;
18899
+ /**
18900
+ * Instagram Similar Profiles
18901
+ *
18902
+ * List the accounts Instagram recommends as similar to a public profile, with each account's handle, display name, verified flag and avatar.
18903
+ *
18904
+ * Price: $0.0024 per request.
18905
+ *
18906
+ * @example
18907
+ * const res = await client.instagram.similarProfiles({ handle: "nasa" });
18908
+ */
18909
+ similarProfiles(input: InstagramSimilarProfilesInput, options?: RequestOptions): Promise<RunResult<InstagramSimilarProfilesData>>;
18145
18910
  /**
18146
18911
  * Instagram Stories (full)
18147
18912
  *
@@ -18187,7 +18952,7 @@ declare class InstagramNamespace {
18187
18952
  *
18188
18953
  * List currently trending Instagram reels. Instagram does not return play counts on this feed.
18189
18954
  *
18190
- * Price: $0.002 per request.
18955
+ * Price: $0.0012 per request.
18191
18956
  *
18192
18957
  * @example
18193
18958
  * const res = await client.instagram.trendingReels({});
@@ -18198,7 +18963,7 @@ declare class InstagramNamespace {
18198
18963
  *
18199
18964
  * List an Instagram account's story highlight reels by handle.
18200
18965
  *
18201
- * Price: $0.0015 per request.
18966
+ * Price: $0.0012 per request.
18202
18967
  *
18203
18968
  * @example
18204
18969
  * const res = await client.instagram.userHighlights({ handle: "nasa" });
@@ -18209,7 +18974,7 @@ declare class InstagramNamespace {
18209
18974
  *
18210
18975
  * List an Instagram account's recent posts (likes, comments, captions) by handle with cursor pagination.
18211
18976
  *
18212
- * Price: $0.0015 per request.
18977
+ * Price: $0.0012 per request.
18213
18978
  *
18214
18979
  * @example
18215
18980
  * const res = await client.instagram.userPosts({ handle: "nasa" });
@@ -18227,7 +18992,7 @@ declare class InstagramNamespace {
18227
18992
  *
18228
18993
  * List an Instagram account's reels by handle with cursor pagination (caption, plays, likes, comments).
18229
18994
  *
18230
- * Price: $0.0015 per request.
18995
+ * Price: $0.0012 per request.
18231
18996
  *
18232
18997
  * @example
18233
18998
  * const res = await client.instagram.userReels({ handle: "nasa" });
@@ -18240,6 +19005,24 @@ declare class InstagramNamespace {
18240
19005
  * result pages instead (each carries its own costUsd).
18241
19006
  */
18242
19007
  iterUserReels(input: InstagramUserReelsInput, options?: RequestOptions): Paginator<InstagramUserReelsReel, RunResult<InstagramUserReelsData>>;
19008
+ /**
19009
+ * Instagram User Reposts
19010
+ *
19011
+ * List the posts a public Instagram account has reposted to its feed, with cursor pagination.
19012
+ *
19013
+ * Price: $0.0012 per request.
19014
+ *
19015
+ * @example
19016
+ * const res = await client.instagram.userReposts({ userId: "787132" });
19017
+ */
19018
+ userReposts(input: InstagramUserRepostsInput, options?: RequestOptions): Promise<RunResult<InstagramUserRepostsData>>;
19019
+ /**
19020
+ * Iterate every result of Instagram User Reposts across pages.
19021
+ *
19022
+ * Yields items directly; call `.pages()` on the return value to walk whole
19023
+ * result pages instead (each carries its own costUsd).
19024
+ */
19025
+ iterUserReposts(input: InstagramUserRepostsInput, options?: RequestOptions): Paginator<InstagramUserRepostsPost, RunResult<InstagramUserRepostsData>>;
18243
19026
  }
18244
19027
 
18245
19028
  /**
@@ -22382,7 +23165,7 @@ declare class LinkedinNamespace {
22382
23165
  *
22383
23166
  * 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.
22384
23167
  *
22385
- * Price: $0.002 per request.
23168
+ * Price: $0.0012 per request.
22386
23169
  *
22387
23170
  * @example
22388
23171
  * const res = await client.linkedin.ad({ url: "https://www.linkedin.com/ad-library/detail/1487405616" });
@@ -22404,7 +23187,7 @@ declare class LinkedinNamespace {
22404
23187
  *
22405
23188
  * Search the LinkedIn Ad Library by company or keyword and list matching ads (advertiser, headline, creative text, format, CTA, and run dates) with pagination.
22406
23189
  *
22407
- * Price: $0.002 per request.
23190
+ * Price: $0.0012 per request.
22408
23191
  *
22409
23192
  * @example
22410
23193
  * const res = await client.linkedin.adsSearch({ company: "microsoft" });
@@ -22459,7 +23242,7 @@ declare class LinkedinNamespace {
22459
23242
  *
22460
23243
  * Post text and link only. No engagement counts, author details, media, or reaction breakdown - for those use linkedin.company_posts.
22461
23244
  *
22462
- * Price: $0.002 per request.
23245
+ * Price: $0.0012 per request.
22463
23246
  *
22464
23247
  * @example
22465
23248
  * const res = await client.linkedin.companyPostsThin({ url: "https://www.linkedin.com/company/stripe" });
@@ -22470,7 +23253,7 @@ declare class LinkedinNamespace {
22470
23253
  *
22471
23254
  * 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.
22472
23255
  *
22473
- * Price: $0.002 per request.
23256
+ * Price: $0.0012 per request.
22474
23257
  *
22475
23258
  * @example
22476
23259
  * const res = await client.linkedin.companyThin({ url: "https://www.linkedin.com/company/stripe" });
@@ -22503,7 +23286,7 @@ declare class LinkedinNamespace {
22503
23286
  *
22504
23287
  * Cheap job index: title, company, location, posted date, URL. No description, salary, applicant counts, or seniority - for those use linkedin.jobs.
22505
23288
  *
22506
- * Price: $0.00045 per request.
23289
+ * Price: $0.0005 per request.
22507
23290
  *
22508
23291
  * @example
22509
23292
  * const res = await client.linkedin.jobsThin({ query: "software engineer", limit: 3, location: "United States", workplaceType: "remote" });
@@ -22514,7 +23297,7 @@ declare class LinkedinNamespace {
22514
23297
  *
22515
23298
  * Fetch a single LinkedIn post or article by URL (title, text, author, like and comment counts, publish date).
22516
23299
  *
22517
- * Price: $0.00045 per request.
23300
+ * Price: $0.0005 per request.
22518
23301
  *
22519
23302
  * @example
22520
23303
  * const res = await client.linkedin.post({ url: "https://www.linkedin.com/posts/stripe_last-week-agent-traffic-surpassed-human-activity-7470882737390940160-2Nxs" });
@@ -22547,7 +23330,7 @@ declare class LinkedinNamespace {
22547
23330
  *
22548
23331
  * Get the spoken transcript of a LinkedIn video post by URL.
22549
23332
  *
22550
- * Price: $0.002 per request.
23333
+ * Price: $0.0012 per request.
22551
23334
  *
22552
23335
  * @example
22553
23336
  * 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-" });
@@ -22591,7 +23374,7 @@ declare class LinkedinNamespace {
22591
23374
  *
22592
23375
  * 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.
22593
23376
  *
22594
- * Price: $0.00072 per request.
23377
+ * Price: $0.0008 per request.
22595
23378
  *
22596
23379
  * @example
22597
23380
  * const res = await client.linkedin.profileThin({ url: "https://www.linkedin.com/in/williamhgates" });
@@ -22613,7 +23396,7 @@ declare class LinkedinNamespace {
22613
23396
  *
22614
23397
  * Search public LinkedIn posts by keyword (text, link, publish date).
22615
23398
  *
22616
- * Price: $0.002 per request.
23399
+ * Price: $0.0012 per request.
22617
23400
  *
22618
23401
  * @example
22619
23402
  * const res = await client.linkedin.searchPosts({ query: "hiring", datePosted: "last-week" });
@@ -23497,218 +24280,294 @@ declare class NaverNamespace {
23497
24280
  }
23498
24281
 
23499
24282
  /**
23500
- * Input for Panda Express Locations (pandaexpress.locations).
24283
+ * Input for Nextdoor Business (nextdoor.business).
23501
24284
  */
23502
- interface PandaexpressLocationsInput {
24285
+ interface NextdoorBusinessInput {
23503
24286
  /**
23504
- * Latitude of the search center.
23505
- * Range: minimum -90, maximum 90.
24287
+ * Maximum number of records to return. A business page resolves to one record, so this is always 1.
24288
+ * Range: minimum 1, maximum 1.
23506
24289
  */
23507
- latitude: number;
24290
+ limit?: number;
23508
24291
  /**
23509
- * Maximum number of restaurants to return (1-50, default 10).
23510
- * Range: minimum 1, maximum 50.
24292
+ * Nextdoor market the page belongs to: "us" (nextdoor.com), "gb" (nextdoor.co.uk), or "ca" (ca.nextdoor.com). Defaults to "us".
24293
+ * One of: us, gb, ca.
23511
24294
  */
23512
- limit?: number;
24295
+ market?: "us" | "gb" | "ca";
23513
24296
  /**
23514
- * Longitude of the search center.
23515
- * Range: minimum -180, maximum 180.
24297
+ * Slug of the Nextdoor business page, the last path segment of its /pages/ URL, e.g. "radiant-plumbing-air-conditioning-austin-tx".
23516
24298
  */
23517
- longitude: number;
24299
+ pageSlug: string;
23518
24300
  /**
23519
24301
  * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
23520
24302
  * Range: minimum 1.
23521
24303
  */
23522
24304
  preferLatencyUnderMs?: number;
24305
+ }
24306
+ interface NextdoorBusinessItem {
23523
24307
  /**
23524
- * Search radius in miles (default 10).
23525
- * Range: minimum 1, maximum 100.
24308
+ * Full street address on one line; absent when the business hides or omits it.
23526
24309
  */
23527
- radius?: number;
23528
- }
23529
- interface PandaexpressLocationsRestaurant {
24310
+ address?: string;
23530
24311
  /**
23531
- * Populated whenever the provider has data for the entity.
24312
+ * Street line of the address; absent when the business hides or omits it.
23532
24313
  */
23533
- address: string;
23534
- canDeliver: boolean;
23535
- canPickup: boolean;
24314
+ addressLine?: string;
23536
24315
  /**
23537
- * Populated whenever the provider has data for the entity.
24316
+ * Unit, suite, or floor; absent when the address has none.
23538
24317
  */
23539
- city: string;
23540
- distanceMiles: number;
24318
+ addressUnit?: string;
23541
24319
  /**
23542
- * Populated whenever the provider has data for the entity.
24320
+ * Nextdoor trade categories the business is listed under, e.g. ["Plumber", "Air conditioning service"].
23543
24321
  */
23544
- id: number;
23545
- isOpen: boolean;
24322
+ categories?: string[];
23546
24323
  /**
23547
- * Populated whenever the provider has data for the entity.
24324
+ * City or locality; absent when the business hides or omits its address.
23548
24325
  */
23549
- latitude: number;
24326
+ city?: string;
23550
24327
  /**
23551
- * Populated whenever the provider has data for the entity.
24328
+ * ISO 3166-1 alpha-2 country code, e.g. "US".
23552
24329
  */
23553
- longitude: number;
24330
+ country?: string;
23554
24331
  /**
23555
- * Populated whenever the provider has data for the entity.
24332
+ * Business description written by the owner; absent when the page has none.
23556
24333
  */
23557
- name: string;
24334
+ description?: string;
23558
24335
  /**
23559
- * Populated whenever the provider has data for the entity.
24336
+ * Primary contact email; absent when the page lists none. Populated whenever the provider has data for the entity.
24337
+ * Present whenever the upstream returns this record.
23560
24338
  */
23561
- phone: string;
24339
+ email?: string;
23562
24340
  /**
23563
- * Populated whenever the provider has data for the entity.
24341
+ * Number of neighbours who have faved (recommended) the business; 0 when none have.
23564
24342
  */
23565
- state: string;
24343
+ faveCount?: number;
23566
24344
  /**
23567
- * Populated whenever the provider has data for the entity.
24345
+ * True when the business chose to hide its street address, which is why the address fields can be absent.
23568
24346
  */
23569
- zip: string;
23570
- [extra: string]: unknown;
23571
- }
23572
- /**
23573
- * The `data` payload of Panda Express Locations (pandaexpress.locations).
23574
- */
23575
- interface PandaexpressLocationsData {
24347
+ hideAddress?: boolean;
23576
24348
  /**
23577
- * Nearby Panda Express restaurants, nearest first. Populated whenever the provider has data for the entity.
24349
+ * Stable Nextdoor business id, e.g. "business_2345302". Populated whenever the provider has data for the entity.
23578
24350
  */
23579
- restaurants: PandaexpressLocationsRestaurant[];
23580
- }
23581
- /**
23582
- * Input for Panda Express Menu (pandaexpress.menu).
23583
- */
23584
- interface PandaexpressMenuInput {
24351
+ id: string;
23585
24352
  /**
23586
- * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
23587
- * Range: minimum 1.
24353
+ * Latitude of the business address; absent when Nextdoor publishes no coordinates.
23588
24354
  */
23589
- preferLatencyUnderMs?: number;
24355
+ latitude?: number;
23590
24356
  /**
23591
- * Panda Express restaurant id (the `id` from Panda Express Locations).
24357
+ * Trade or contractor licence number the business published; absent when it published none.
23592
24358
  */
23593
- restaurantId: string;
23594
- }
23595
- /**
23596
- * Populated whenever the provider has data for the entity.
23597
- */
23598
- interface PandaexpressMenuCategorie {
23599
- items: PandaexpressMenuItem[];
24359
+ licenseId?: string;
23600
24360
  /**
23601
- * Populated whenever the provider has data for the entity.
24361
+ * Operating status Nextdoor reports, e.g. "OPEN" or "PERMANENTLY_CLOSED"; empty when unreported.
23602
24362
  */
23603
- name: string;
23604
- [extra: string]: unknown;
23605
- }
23606
- interface PandaexpressMenuItem {
24363
+ locationStatus?: string;
23607
24364
  /**
23608
- * Base calories when published by the restaurant, else 0.
24365
+ * Longitude of the business address; absent when Nextdoor publishes no coordinates.
23609
24366
  */
23610
- calories: number;
24367
+ longitude?: number;
23611
24368
  /**
23612
- * Populated whenever the provider has data for the entity.
24369
+ * Business name as listed on Nextdoor. Populated whenever the provider has data for the entity.
23613
24370
  */
23614
- description: string;
23615
24371
  name: string;
23616
24372
  /**
23617
- * Item price in USD (0 for items priced only via size/option selection).
24373
+ * Primary phone number in E.164 form, e.g. "+15122639988"; absent when the page lists none. Populated whenever the provider has data for the entity.
24374
+ * Present whenever the upstream returns this record.
23618
24375
  */
23619
- priceUsd: number;
24376
+ phone?: string;
24377
+ /**
24378
+ * Postal or ZIP code; absent when the business hides or omits its address.
24379
+ */
24380
+ postalCode?: string;
24381
+ /**
24382
+ * Page slug for this business. Pass it to nextdoor.business to refetch this record on its own. Populated whenever the provider has data for the entity.
24383
+ */
24384
+ slug: string;
24385
+ /**
24386
+ * State, province, or region code, e.g. "TX"; absent when the business hides or omits its address.
24387
+ */
24388
+ state?: string;
24389
+ /**
24390
+ * Canonical Nextdoor business page URL. Populated whenever the provider has data for the entity.
24391
+ * Format: uri.
24392
+ */
24393
+ url: string;
24394
+ /**
24395
+ * Business website URL; absent when the page lists none.
24396
+ * Format: uri.
24397
+ */
24398
+ website?: string;
23620
24399
  [extra: string]: unknown;
23621
24400
  }
23622
24401
  /**
23623
- * The `data` payload of Panda Express Menu (pandaexpress.menu).
24402
+ * The `data` payload of Nextdoor Business (nextdoor.business).
23624
24403
  */
23625
- interface PandaexpressMenuData {
24404
+ interface NextdoorBusinessData {
23626
24405
  /**
23627
- * Menu categories in display order. Populated whenever the provider has data for the entity.
24406
+ * The Nextdoor business record for the requested page slug. Populated whenever the provider has data for the entity.
23628
24407
  */
23629
- categories: PandaexpressMenuCategorie[];
24408
+ items: NextdoorBusinessItem[];
23630
24409
  }
23631
24410
  /**
23632
- * Input for Panda Express Nutrition (pandaexpress.nutrition).
24411
+ * Input for Nextdoor Business Search (nextdoor.search).
23633
24412
  */
23634
- interface PandaexpressNutritionInput {
24413
+ interface NextdoorSearchInput {
24414
+ /**
24415
+ * Nextdoor city slug, lowercase, with the city and its state or region joined by two hyphens, e.g. "austin--tx" or "york--england".
24416
+ */
24417
+ city: string;
24418
+ /**
24419
+ * Maximum number of businesses to return (1-20, default 20). You are billed per result returned, so a lower limit costs less.
24420
+ * Range: minimum 1, maximum 20.
24421
+ */
24422
+ limit?: number;
24423
+ /**
24424
+ * Nextdoor market the city belongs to: "us" (nextdoor.com), "gb" (nextdoor.co.uk), or "ca" (ca.nextdoor.com). Defaults to "us".
24425
+ * One of: us, gb, ca.
24426
+ */
24427
+ market?: "us" | "gb" | "ca";
23635
24428
  /**
23636
24429
  * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
23637
24430
  * Range: minimum 1.
23638
24431
  */
23639
24432
  preferLatencyUnderMs?: number;
23640
24433
  /**
23641
- * Menu item name (or substring) to look up, e.g. "orange chicken" or "chow mein".
24434
+ * Business category to look for in that city, e.g. "plumber", "bakery", "electrician".
23642
24435
  */
23643
24436
  query: string;
23644
24437
  }
23645
- interface PandaexpressNutritionItem {
23646
- calories: number;
23647
- cholesterolMg: number;
23648
- dietaryFiberG: number;
24438
+ interface NextdoorSearchItem {
23649
24439
  /**
23650
- * Populated whenever the provider has data for the entity.
24440
+ * Full street address on one line; absent when the business hides or omits it.
24441
+ */
24442
+ address?: string;
24443
+ /**
24444
+ * Street line of the address; absent when the business hides or omits it.
24445
+ */
24446
+ addressLine?: string;
24447
+ /**
24448
+ * Unit, suite, or floor; absent when the address has none.
24449
+ */
24450
+ addressUnit?: string;
24451
+ /**
24452
+ * Nextdoor trade categories the business is listed under, e.g. ["Plumber", "Air conditioning service"].
24453
+ */
24454
+ categories?: string[];
24455
+ /**
24456
+ * City or locality; absent when the business hides or omits its address.
24457
+ */
24458
+ city?: string;
24459
+ /**
24460
+ * ISO 3166-1 alpha-2 country code, e.g. "US".
24461
+ */
24462
+ country?: string;
24463
+ /**
24464
+ * Business description written by the owner; absent when the page has none.
24465
+ */
24466
+ description?: string;
24467
+ /**
24468
+ * Primary contact email; absent when the page lists none. Populated whenever the provider has data for the entity.
24469
+ * Present whenever the upstream returns this record.
24470
+ */
24471
+ email?: string;
24472
+ /**
24473
+ * Number of neighbours who have faved (recommended) the business; 0 when none have.
24474
+ */
24475
+ faveCount?: number;
24476
+ /**
24477
+ * True when the business chose to hide its street address, which is why the address fields can be absent.
24478
+ */
24479
+ hideAddress?: boolean;
24480
+ /**
24481
+ * Stable Nextdoor business id, e.g. "business_2345302". Populated whenever the provider has data for the entity.
24482
+ */
24483
+ id: string;
24484
+ /**
24485
+ * Latitude of the business address; absent when Nextdoor publishes no coordinates.
24486
+ */
24487
+ latitude?: number;
24488
+ /**
24489
+ * Trade or contractor licence number the business published; absent when it published none.
24490
+ */
24491
+ licenseId?: string;
24492
+ /**
24493
+ * Operating status Nextdoor reports, e.g. "OPEN" or "PERMANENTLY_CLOSED"; empty when unreported.
24494
+ */
24495
+ locationStatus?: string;
24496
+ /**
24497
+ * Longitude of the business address; absent when Nextdoor publishes no coordinates.
24498
+ */
24499
+ longitude?: number;
24500
+ /**
24501
+ * Business name as listed on Nextdoor. Populated whenever the provider has data for the entity.
23651
24502
  */
23652
24503
  name: string;
23653
- proteinG: number;
23654
- saturatedFatG: number;
23655
- servingSizeOz: number;
23656
- sodiumMg: number;
23657
- sugarsG: number;
23658
- totalCarbG: number;
23659
- totalFatG: number;
23660
- transFatG: number;
24504
+ /**
24505
+ * Primary phone number in E.164 form, e.g. "+15122639988"; absent when the page lists none. Populated whenever the provider has data for the entity.
24506
+ * Present whenever the upstream returns this record.
24507
+ */
24508
+ phone?: string;
24509
+ /**
24510
+ * Postal or ZIP code; absent when the business hides or omits its address.
24511
+ */
24512
+ postalCode?: string;
24513
+ /**
24514
+ * Page slug for this business. Pass it to nextdoor.business to refetch this record on its own. Populated whenever the provider has data for the entity.
24515
+ */
24516
+ slug: string;
24517
+ /**
24518
+ * State, province, or region code, e.g. "TX"; absent when the business hides or omits its address.
24519
+ */
24520
+ state?: string;
24521
+ /**
24522
+ * Canonical Nextdoor business page URL. Populated whenever the provider has data for the entity.
24523
+ * Format: uri.
24524
+ */
24525
+ url: string;
24526
+ /**
24527
+ * Business website URL; absent when the page lists none.
24528
+ * Format: uri.
24529
+ */
24530
+ website?: string;
23661
24531
  [extra: string]: unknown;
23662
24532
  }
23663
24533
  /**
23664
- * The `data` payload of Panda Express Nutrition (pandaexpress.nutrition).
24534
+ * The `data` payload of Nextdoor Business Search (nextdoor.search).
23665
24535
  */
23666
- interface PandaexpressNutritionData {
24536
+ interface NextdoorSearchData {
23667
24537
  /**
23668
- * Matching menu items with official nutrition facts. Populated whenever the provider has data for the entity.
24538
+ * Nextdoor business records matching the city and category, one per business. Populated whenever the provider has data for the entity.
23669
24539
  */
23670
- items: PandaexpressNutritionItem[];
24540
+ items: NextdoorSearchItem[];
23671
24541
  }
23672
24542
  /**
23673
- * Typed methods for the pandaexpress platform. Attached to the AnyAPI client as
23674
- * `client.pandaexpress`.
24543
+ * Typed methods for the nextdoor platform. Attached to the AnyAPI client as
24544
+ * `client.nextdoor`.
23675
24545
  */
23676
- declare class PandaexpressNamespace {
24546
+ declare class NextdoorNamespace {
23677
24547
  private readonly _core;
23678
24548
  constructor(_core: ClientCore);
23679
24549
  /**
23680
- * Panda Express Locations
24550
+ * Nextdoor Business
23681
24551
  *
23682
- * Find Panda Express restaurants near a latitude/longitude, sorted by distance, with address, phone, hours availability, and pickup/delivery support.
24552
+ * Fetch one Nextdoor business page by its slug, with phone, email, website, and street address.
23683
24553
  *
23684
- * Price: $0.0009 per request.
24554
+ * Price: $0.0055 per request plus $0.00286 per result (maximum $0.00836).
23685
24555
  *
23686
24556
  * @example
23687
- * const res = await client.pandaexpress.locations({ latitude: 34.0522, longitude: -118.2437, limit: 5 });
24557
+ * const res = await client.nextdoor.business({ pageSlug: "radiant-plumbing-air-conditioning-austin-tx" });
23688
24558
  */
23689
- locations(input: PandaexpressLocationsInput, options?: RequestOptions): Promise<RunResult<PandaexpressLocationsData>>;
24559
+ business(input: NextdoorBusinessInput, options?: RequestOptions): Promise<RunResult<NextdoorBusinessData>>;
23690
24560
  /**
23691
- * Panda Express Menu
24561
+ * Nextdoor Business Search
23692
24562
  *
23693
- * 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.
24563
+ * Find local businesses listed on Nextdoor by city and trade category, with phone, email, website, and street address.
23694
24564
  *
23695
- * Price: $0.0009 per request.
24565
+ * Price: $0.0055 per request plus $0.00286 per result (maximum $0.0627).
23696
24566
  *
23697
24567
  * @example
23698
- * const res = await client.pandaexpress.menu({ restaurantId: "112551" });
24568
+ * const res = await client.nextdoor.search({ city: "austin--tx", query: "plumber", limit: 5 });
23699
24569
  */
23700
- menu(input: PandaexpressMenuInput, options?: RequestOptions): Promise<RunResult<PandaexpressMenuData>>;
23701
- /**
23702
- * Panda Express Nutrition
23703
- *
23704
- * Look up official Panda Express nutrition facts by item name: serving size, calories, fat, cholesterol, sodium, carbs, fiber, sugars, and protein.
23705
- *
23706
- * Price: $0.006 per request.
23707
- *
23708
- * @example
23709
- * const res = await client.pandaexpress.nutrition({ query: "orange chicken" });
23710
- */
23711
- nutrition(input: PandaexpressNutritionInput, options?: RequestOptions): Promise<RunResult<PandaexpressNutritionData>>;
24570
+ search(input: NextdoorSearchInput, options?: RequestOptions): Promise<RunResult<NextdoorSearchData>>;
23712
24571
  }
23713
24572
 
23714
24573
  /**
@@ -27518,7 +28377,7 @@ declare class PerplexityNamespace {
27518
28377
  *
27519
28378
  * Ask Perplexity a web-grounded question and receive an answer with source citations.
27520
28379
  *
27521
- * Price: $0.0018 per request.
28380
+ * Price: $0.002 per request.
27522
28381
  *
27523
28382
  * @example
27524
28383
  * const res = await client.perplexity.search({ prompt: "What is AnyAPI at getanyapi.com, and what does it offer?" });
@@ -27677,698 +28536,6 @@ declare class PersonNamespace {
27677
28536
  skipTrace(input: PersonSkipTraceInput, options?: RequestOptions): Promise<RunResult<PersonSkipTraceData>>;
27678
28537
  }
27679
28538
 
27680
- /**
27681
- * Input for Person Enrichment - Aviato (person_enrichment.aviato).
27682
- */
27683
- interface PersonEnrichmentAviatoInput {
27684
- angelListID?: string;
27685
- crunchbaseID?: string;
27686
- /**
27687
- * Format: email.
27688
- */
27689
- email?: string;
27690
- id?: string;
27691
- linkedinEntityId?: string;
27692
- linkedinID?: string;
27693
- /**
27694
- * Format: uri.
27695
- */
27696
- linkedinURL?: string;
27697
- polyworkID?: string;
27698
- /**
27699
- * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
27700
- * Range: minimum 1.
27701
- */
27702
- preferLatencyUnderMs?: number;
27703
- require?: string[];
27704
- signalNfxID?: string;
27705
- twitterID?: string;
27706
- }
27707
- interface PersonEnrichmentAviatoCertification {
27708
- /**
27709
- * Aviato's company identifier for the issuer.
27710
- */
27711
- companyId?: string;
27712
- /**
27713
- * Company that issued the certification.
27714
- */
27715
- companyName?: string;
27716
- /**
27717
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
27718
- */
27719
- expiresUtc?: number;
27720
- /**
27721
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
27722
- */
27723
- issuedUtc?: number;
27724
- /**
27725
- * Certification name.
27726
- */
27727
- name?: string;
27728
- /**
27729
- * URL of the certification or its issuer.
27730
- */
27731
- url?: string;
27732
- [extra: string]: unknown;
27733
- }
27734
- interface PersonEnrichmentAviatoDegree {
27735
- /**
27736
- * Degree awarded, e.g. B.S.
27737
- */
27738
- degree?: string;
27739
- /**
27740
- * Aviato's record class for this entry, e.g. "company" or "school".
27741
- */
27742
- entityType?: string;
27743
- /**
27744
- * Field of study the degree is in.
27745
- */
27746
- fieldOfStudy?: string;
27747
- /**
27748
- * Aviato's education-record identifier this degree was awarded for. It matches an educationId in the education array.
27749
- */
27750
- personEducationId?: string;
27751
- /**
27752
- * Aviato's person identifier this degree belongs to. Same value as the top-level aviatoId.
27753
- */
27754
- personId?: string;
27755
- /**
27756
- * School that awarded the degree.
27757
- */
27758
- school?: string;
27759
- /**
27760
- * Aviato's identifier for the school.
27761
- */
27762
- schoolId?: string;
27763
- /**
27764
- * School's LinkedIn vanity handle.
27765
- */
27766
- schoolLinkedinHandle?: string;
27767
- /**
27768
- * LinkedIn's own numeric identifier for the school on this record.
27769
- */
27770
- schoolLinkedinNumericId?: string;
27771
- /**
27772
- * Where the school is located.
27773
- */
27774
- schoolLocation?: string;
27775
- [extra: string]: unknown;
27776
- }
27777
- interface PersonEnrichmentAviatoEducation {
27778
- /**
27779
- * Aviato's identifier for this education record.
27780
- */
27781
- educationId?: string;
27782
- /**
27783
- * LinkedIn's own numeric identifier for this education entry.
27784
- */
27785
- educationLinkedinNumericId?: string;
27786
- /**
27787
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
27788
- */
27789
- endedUtc?: number;
27790
- /**
27791
- * Aviato's record class for this entry, e.g. "company" or "school".
27792
- */
27793
- entityType?: string;
27794
- /**
27795
- * Aviato's person identifier this education record belongs to. Same value as the top-level aviatoId.
27796
- */
27797
- personId?: string;
27798
- /**
27799
- * School name.
27800
- */
27801
- school?: string;
27802
- /**
27803
- * School name on Aviato's school record. Duplicates the school field.
27804
- */
27805
- schoolFullName?: string;
27806
- /**
27807
- * Aviato's identifier for the school.
27808
- */
27809
- schoolId?: string;
27810
- /**
27811
- * School's LinkedIn vanity handle.
27812
- */
27813
- schoolLinkedinHandle?: string;
27814
- /**
27815
- * LinkedIn's own numeric identifier for the school on this record.
27816
- */
27817
- schoolLinkedinNumericId?: string;
27818
- /**
27819
- * Where the school is located.
27820
- */
27821
- schoolLocation?: string;
27822
- /**
27823
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
27824
- */
27825
- startedUtc?: number;
27826
- /**
27827
- * Subject studied.
27828
- */
27829
- subject?: string;
27830
- [extra: string]: unknown;
27831
- }
27832
- interface PersonEnrichmentAviatoExperience {
27833
- /**
27834
- * Employer's AngelList profile URL.
27835
- */
27836
- companyAngelListUrl?: string;
27837
- /**
27838
- * Employer name on Aviato's company record. Usually identical to companyName, but it can differ when the company was renamed or acquired.
27839
- */
27840
- companyCanonicalName?: string;
27841
- /**
27842
- * Employer's contact page as Aviato records it. Aviato sometimes returns a malformed value here that runs two host names together into one path, and we pass it through as returned rather than guessing the intended link.
27843
- */
27844
- companyContactUrl?: string;
27845
- /**
27846
- * Employer's country.
27847
- */
27848
- companyCountry?: string;
27849
- /**
27850
- * Employer's Crunchbase profile URL.
27851
- */
27852
- companyCrunchbaseUrl?: string;
27853
- /**
27854
- * What the employer does.
27855
- */
27856
- companyDescription?: string;
27857
- /**
27858
- * Employer's Facebook page URL.
27859
- */
27860
- companyFacebookUrl?: string;
27861
- /**
27862
- * Employer's Golden knowledge-base profile URL.
27863
- */
27864
- companyGoldenUrl?: string;
27865
- /**
27866
- * Aviato's company identifier for the employer.
27867
- */
27868
- companyId?: string;
27869
- /**
27870
- * Employer's industries in Aviato's taxonomy.
27871
- */
27872
- companyIndustries?: string[];
27873
- /**
27874
- * Employer's industries as LinkedIn labels them.
27875
- */
27876
- companyLinkedinIndustries?: string[];
27877
- /**
27878
- * LinkedIn's own numeric identifier for the company on this record.
27879
- */
27880
- companyLinkedinNumericId?: string;
27881
- /**
27882
- * Employer's LinkedIn company page URL.
27883
- */
27884
- companyLinkedinUrl?: string;
27885
- /**
27886
- * Employer's city.
27887
- */
27888
- companyLocality?: string;
27889
- /**
27890
- * Employer name.
27891
- */
27892
- companyName?: string;
27893
- /**
27894
- * Employer's PitchBook profile URL.
27895
- */
27896
- companyPitchbookUrl?: string;
27897
- /**
27898
- * Identifier on the nested Aviato company record. Same value as companyId.
27899
- */
27900
- companyRecordId?: string;
27901
- /**
27902
- * Employer's state or region.
27903
- */
27904
- companyRegion?: string;
27905
- /**
27906
- * Employer's Twitter/X profile URL.
27907
- */
27908
- companyTwitterUrl?: string;
27909
- /**
27910
- * Employer's website URL.
27911
- */
27912
- companyWebsiteUrl?: string;
27913
- /**
27914
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
27915
- */
27916
- endedUtc?: number;
27917
- /**
27918
- * Aviato's record class for this entry, e.g. "company" or "school".
27919
- */
27920
- entityType?: string;
27921
- /**
27922
- * Aviato's person identifier this experience belongs to. Same value as the top-level aviatoId.
27923
- */
27924
- personId?: string;
27925
- /**
27926
- * Roles held at this employer.
27927
- */
27928
- positions?: PersonEnrichmentAviatoPosition[];
27929
- /**
27930
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
27931
- */
27932
- startedUtc?: number;
27933
- [extra: string]: unknown;
27934
- }
27935
- interface PersonEnrichmentAviatoPosition {
27936
- /**
27937
- * Department the role sits in, e.g. EXECUTIVE.
27938
- */
27939
- department?: string;
27940
- /**
27941
- * Role description as written on the profile.
27942
- */
27943
- description?: string;
27944
- /**
27945
- * Employment type, e.g. Full-time.
27946
- */
27947
- employmentType?: string;
27948
- /**
27949
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
27950
- */
27951
- endedUtc?: number;
27952
- /**
27953
- * Where the role was based.
27954
- */
27955
- location?: string;
27956
- /**
27957
- * Seniority score for the role; higher is more senior.
27958
- */
27959
- seniorityScore?: number;
27960
- /**
27961
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
27962
- */
27963
- startedUtc?: number;
27964
- /**
27965
- * Job title.
27966
- */
27967
- title?: string;
27968
- [extra: string]: unknown;
27969
- }
27970
- interface PersonEnrichmentAviatoLanguage {
27971
- /**
27972
- * Language name.
27973
- */
27974
- name?: string;
27975
- /**
27976
- * Proficiency level, e.g. NATIVE_OR_BILINGUAL.
27977
- */
27978
- proficiency?: string;
27979
- [extra: string]: unknown;
27980
- }
27981
- /**
27982
- * The `data` payload of Person Enrichment - Aviato (person_enrichment.aviato).
27983
- */
27984
- interface PersonEnrichmentAviatoData {
27985
- /**
27986
- * Profile about/summary text.
27987
- */
27988
- about?: string;
27989
- /**
27990
- * Aviato's own person identifier. Send it back as this SKU's id input to re-enrich the same person.
27991
- */
27992
- aviatoId?: string;
27993
- /**
27994
- * Certifications listed on the profile.
27995
- */
27996
- certifications?: PersonEnrichmentAviatoCertification[];
27997
- /**
27998
- * Country the person is located in.
27999
- */
28000
- country?: string;
28001
- /**
28002
- * Crunchbase profile URL.
28003
- */
28004
- crunchbaseUrl?: string;
28005
- /**
28006
- * Degrees earned.
28007
- */
28008
- degrees?: PersonEnrichmentAviatoDegree[];
28009
- /**
28010
- * Schools attended.
28011
- */
28012
- education?: PersonEnrichmentAviatoEducation[];
28013
- /**
28014
- * True when an email address is known for this person.
28015
- */
28016
- emailAvailable?: boolean;
28017
- /**
28018
- * Aviato's record type for this result. It is always person on this SKU, so it repeats what the endpoint already promises.
28019
- */
28020
- entityType?: string;
28021
- /**
28022
- * Work history, one entry per company, most recent first.
28023
- */
28024
- experience?: PersonEnrichmentAviatoExperience[];
28025
- /**
28026
- * Facebook profile URL.
28027
- */
28028
- facebookUrl?: string;
28029
- /**
28030
- * Person's first name.
28031
- */
28032
- firstName?: string;
28033
- /**
28034
- * Gender recorded for the person.
28035
- */
28036
- gender?: string;
28037
- /**
28038
- * Golden knowledge-base profile URL for the person.
28039
- */
28040
- goldenUrl?: string;
28041
- /**
28042
- * LinkedIn headline.
28043
- */
28044
- headline?: string;
28045
- /**
28046
- * Career highlight labels, e.g. employeeDuringIPO.
28047
- */
28048
- highlights?: string[];
28049
- /**
28050
- * Industries the person has invested in, as Aviato returns them. Deliberately untyped: the field is empty in every response we have captured, so the value passes through without a shape guarantee.
28051
- */
28052
- investedIndustries?: unknown;
28053
- /**
28054
- * Funding-round stages the person has invested in.
28055
- */
28056
- investedRounds?: string[];
28057
- /**
28058
- * Investor categories Aviato assigns to the person. Deliberately untyped: the field is empty in every response we have captured, so the value passes through without a shape guarantee.
28059
- */
28060
- investorCategories?: unknown;
28061
- /**
28062
- * One-sentence investor summary of the person.
28063
- */
28064
- investorSummary?: string;
28065
- /**
28066
- * Investor classification, e.g. angel or investment_partner.
28067
- */
28068
- investorType?: string;
28069
- /**
28070
- * Languages listed on the profile.
28071
- */
28072
- languages?: PersonEnrichmentAviatoLanguage[];
28073
- /**
28074
- * Person's last name.
28075
- */
28076
- lastName?: string;
28077
- /**
28078
- * Latitude of the person's city.
28079
- */
28080
- latitude?: number;
28081
- /**
28082
- * Number of LinkedIn connections.
28083
- * Range: minimum 0.
28084
- */
28085
- linkedinConnections?: number;
28086
- /**
28087
- * LinkedIn's opaque member URN identifier. Accepted back as this SKU's linkedinEntityId input.
28088
- */
28089
- linkedinEntityId?: string;
28090
- /**
28091
- * Number of LinkedIn followers.
28092
- * Range: minimum 0.
28093
- */
28094
- linkedinFollowers?: number;
28095
- /**
28096
- * LinkedIn vanity handle, the last path segment of the profile URL.
28097
- */
28098
- linkedinHandle?: string;
28099
- /**
28100
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
28101
- */
28102
- linkedinJoinedUtc?: number;
28103
- /**
28104
- * LinkedIn's numeric member identifier, as a string.
28105
- */
28106
- linkedinNumericId?: string;
28107
- /**
28108
- * True when the profile is an Open Profile, so anyone may message it.
28109
- */
28110
- linkedinOpenProfile?: boolean;
28111
- /**
28112
- * True when the profile holds a LinkedIn Premium subscription.
28113
- */
28114
- linkedinPremium?: boolean;
28115
- /**
28116
- * LinkedIn profile URL.
28117
- */
28118
- linkedinUrl?: string;
28119
- /**
28120
- * City the person is located in.
28121
- */
28122
- locality?: string;
28123
- /**
28124
- * Location as a single display string, e.g. Boston, Massachusetts, United States.
28125
- */
28126
- location?: string;
28127
- /**
28128
- * The person's location broken into place tiers, each with Aviato's place identifier, name, place type and geometry.
28129
- */
28130
- locationDetails?: {
28131
- /**
28132
- * Continent tier of the person's location.
28133
- */
28134
- continent?: {
28135
- /**
28136
- * Area of the place in square degrees.
28137
- */
28138
- areaSquareDegrees?: number;
28139
- /**
28140
- * Bounding box of the place as minLon,minLat,maxLon,maxLat.
28141
- */
28142
- boundingBox?: string;
28143
- /**
28144
- * Latitude of the place centre.
28145
- */
28146
- latitude?: number;
28147
- /**
28148
- * Longitude of the place centre.
28149
- */
28150
- longitude?: number;
28151
- /**
28152
- * Place name for this tier.
28153
- */
28154
- name?: string;
28155
- /**
28156
- * Aviato's place identifier for this tier.
28157
- */
28158
- placeId?: string;
28159
- /**
28160
- * Aviato's label for this tier, for example locality.
28161
- */
28162
- placeType?: string;
28163
- };
28164
- /**
28165
- * Country tier of the person's location. Its name duplicates the top-level country field.
28166
- */
28167
- country?: {
28168
- /**
28169
- * Area of the place in square degrees.
28170
- */
28171
- areaSquareDegrees?: number;
28172
- /**
28173
- * Bounding box of the place as minLon,minLat,maxLon,maxLat.
28174
- */
28175
- boundingBox?: string;
28176
- /**
28177
- * Latitude of the place centre.
28178
- */
28179
- latitude?: number;
28180
- /**
28181
- * Longitude of the place centre.
28182
- */
28183
- longitude?: number;
28184
- /**
28185
- * Place name for this tier.
28186
- */
28187
- name?: string;
28188
- /**
28189
- * Aviato's place identifier for this tier.
28190
- */
28191
- placeId?: string;
28192
- /**
28193
- * Aviato's label for this tier, for example locality.
28194
- */
28195
- placeType?: string;
28196
- };
28197
- /**
28198
- * County tier of the person's location.
28199
- */
28200
- county?: {
28201
- /**
28202
- * Area of the place in square degrees.
28203
- */
28204
- areaSquareDegrees?: number;
28205
- /**
28206
- * Bounding box of the place as minLon,minLat,maxLon,maxLat.
28207
- */
28208
- boundingBox?: string;
28209
- /**
28210
- * Latitude of the place centre.
28211
- */
28212
- latitude?: number;
28213
- /**
28214
- * Longitude of the place centre.
28215
- */
28216
- longitude?: number;
28217
- /**
28218
- * Place name for this tier.
28219
- */
28220
- name?: string;
28221
- /**
28222
- * Aviato's place identifier for this tier.
28223
- */
28224
- placeId?: string;
28225
- /**
28226
- * Aviato's label for this tier, for example locality.
28227
- */
28228
- placeType?: string;
28229
- };
28230
- /**
28231
- * Local administrative area tier of the person's location, such as the town or city government area.
28232
- */
28233
- localAdmin?: {
28234
- /**
28235
- * Area of the place in square degrees.
28236
- */
28237
- areaSquareDegrees?: number;
28238
- /**
28239
- * Bounding box of the place as minLon,minLat,maxLon,maxLat.
28240
- */
28241
- boundingBox?: string;
28242
- /**
28243
- * Latitude of the place centre.
28244
- */
28245
- latitude?: number;
28246
- /**
28247
- * Longitude of the place centre.
28248
- */
28249
- longitude?: number;
28250
- /**
28251
- * Place name for this tier.
28252
- */
28253
- name?: string;
28254
- /**
28255
- * Aviato's place identifier for this tier.
28256
- */
28257
- placeId?: string;
28258
- /**
28259
- * Aviato's label for this tier, for example locality.
28260
- */
28261
- placeType?: string;
28262
- };
28263
- /**
28264
- * City tier of the person's location. Its name duplicates the top-level locality field, and its latitude and longitude duplicate the top-level latitude and longitude.
28265
- */
28266
- locality?: {
28267
- /**
28268
- * Area of the place in square degrees.
28269
- */
28270
- areaSquareDegrees?: number;
28271
- /**
28272
- * Bounding box of the place as minLon,minLat,maxLon,maxLat.
28273
- */
28274
- boundingBox?: string;
28275
- /**
28276
- * Latitude of the place centre.
28277
- */
28278
- latitude?: number;
28279
- /**
28280
- * Longitude of the place centre.
28281
- */
28282
- longitude?: number;
28283
- /**
28284
- * Place name for this tier.
28285
- */
28286
- name?: string;
28287
- /**
28288
- * Aviato's place identifier for this tier.
28289
- */
28290
- placeId?: string;
28291
- /**
28292
- * Aviato's label for this tier, for example locality.
28293
- */
28294
- placeType?: string;
28295
- };
28296
- /**
28297
- * State or region tier of the person's location. Its name duplicates the top-level region field.
28298
- */
28299
- region?: {
28300
- /**
28301
- * Area of the place in square degrees.
28302
- */
28303
- areaSquareDegrees?: number;
28304
- /**
28305
- * Bounding box of the place as minLon,minLat,maxLon,maxLat.
28306
- */
28307
- boundingBox?: string;
28308
- /**
28309
- * Latitude of the place centre.
28310
- */
28311
- latitude?: number;
28312
- /**
28313
- * Longitude of the place centre.
28314
- */
28315
- longitude?: number;
28316
- /**
28317
- * Place name for this tier.
28318
- */
28319
- name?: string;
28320
- /**
28321
- * Aviato's place identifier for this tier.
28322
- */
28323
- placeId?: string;
28324
- /**
28325
- * Aviato's label for this tier, for example locality.
28326
- */
28327
- placeType?: string;
28328
- };
28329
- };
28330
- /**
28331
- * Aviato's place identifiers for the location tiers in locationDetails, broadest first.
28332
- */
28333
- locationIds?: number[];
28334
- /**
28335
- * Longitude of the person's city.
28336
- */
28337
- longitude?: number;
28338
- /**
28339
- * Person's full name.
28340
- */
28341
- name: string;
28342
- /**
28343
- * True when a personal email address is known for this person.
28344
- */
28345
- personalEmailAvailable?: boolean;
28346
- /**
28347
- * State or region the person is located in.
28348
- */
28349
- region?: string;
28350
- /**
28351
- * Skills listed on the profile.
28352
- */
28353
- skills?: string[];
28354
- /**
28355
- * Twitter/X profile URL.
28356
- */
28357
- twitterUrl?: string;
28358
- /**
28359
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
28360
- */
28361
- updatedUtc?: number;
28362
- /**
28363
- * Personal or company website URL.
28364
- */
28365
- websiteUrl?: string;
28366
- /**
28367
- * True when a work email address is known for this person.
28368
- */
28369
- workEmailAvailable?: boolean;
28370
- [extra: string]: unknown;
28371
- }
28372
28539
  /**
28373
28540
  * Input for Person Enrichment - BetterContact (person_enrichment.bettercontact).
28374
28541
  */
@@ -30935,17 +31102,6 @@ interface PersonEnrichmentQuickenrichData {
30935
31102
  declare class PersonEnrichmentNamespace {
30936
31103
  private readonly _core;
30937
31104
  constructor(_core: ClientCore);
30938
- /**
30939
- * Person Enrichment - Aviato
30940
- *
30941
- * Enrich a person from an Aviato or LinkedIn identifier, LinkedIn URL, or email.
30942
- *
30943
- * Price: $0.084 per request.
30944
- *
30945
- * @example
30946
- * const res = await client.personEnrichment.aviato({ linkedinURL: "https://www.linkedin.com/in/dharmesh" });
30947
- */
30948
- aviato(input: PersonEnrichmentAviatoInput, options?: RequestOptions): Promise<RunResult<PersonEnrichmentAviatoData>>;
30949
31105
  /**
30950
31106
  * Person Enrichment - BetterContact
30951
31107
  *
@@ -32384,7 +32540,7 @@ declare class RedditNamespace {
32384
32540
  *
32385
32541
  * Fetch a single Reddit post by URL, including its full body text, score, comment count, upvote ratio, and subreddit, as normalized JSON.
32386
32542
  *
32387
- * Price: $0.00045 per request.
32543
+ * Price: $0.0005 per request.
32388
32544
  *
32389
32545
  * @example
32390
32546
  * const res = await client.reddit.post({ url: "https://www.reddit.com/r/IAmA/comments/z1c9z/i_am_barack_obama_president_of_the_united_states/" });
@@ -32395,7 +32551,7 @@ declare class RedditNamespace {
32395
32551
  *
32396
32552
  * List the top-level comments on a Reddit post by URL (author, body, score, timestamp).
32397
32553
  *
32398
- * Price: $0.002 per request.
32554
+ * Price: $0.0012 per request.
32399
32555
  *
32400
32556
  * @example
32401
32557
  * const res = await client.reddit.postComments({ url: "https://www.reddit.com/r/IAmA/comments/z1c9z/i_am_barack_obama_president_of_the_united_states/" });
@@ -32413,7 +32569,7 @@ declare class RedditNamespace {
32413
32569
  *
32414
32570
  * Extract the spoken transcript from a Reddit video post by URL.
32415
32571
  *
32416
- * Price: $0.002 per request.
32572
+ * Price: $0.0012 per request.
32417
32573
  *
32418
32574
  * @example
32419
32575
  * const res = await client.reddit.postTranscript({ url: "https://www.reddit.com/r/youseeingthisshit/comments/1oiu9xm/" });
@@ -32435,7 +32591,7 @@ declare class RedditNamespace {
32435
32591
  *
32436
32592
  * Search Reddit posts across all subreddits by query.
32437
32593
  *
32438
- * Price: $0.00045 per request.
32594
+ * Price: $0.0005 per request.
32439
32595
  *
32440
32596
  * @example
32441
32597
  * const res = await client.reddit.search({ query: "mechanical keyboard" });
@@ -32464,7 +32620,7 @@ declare class RedditNamespace {
32464
32620
  *
32465
32621
  * Fetch posts from a subreddit listing (hot, new, or top).
32466
32622
  *
32467
- * Price: $0.00045 per request.
32623
+ * Price: $0.0005 per request.
32468
32624
  *
32469
32625
  * @example
32470
32626
  * const res = await client.reddit.subredditPosts({ subreddit: "programming", limit: 5 });
@@ -32482,7 +32638,7 @@ declare class RedditNamespace {
32482
32638
  *
32483
32639
  * Search posts within a single subreddit by query, sort, and timeframe.
32484
32640
  *
32485
- * Price: $0.00045 per request.
32641
+ * Price: $0.0005 per request.
32486
32642
  *
32487
32643
  * @example
32488
32644
  * const res = await client.reddit.subredditSearch({ subreddit: "Fitness", query: "push ups" });
@@ -32500,7 +32656,7 @@ declare class RedditNamespace {
32500
32656
  *
32501
32657
  * Get currently trending Reddit posts across all subreddits with stable cursor pagination.
32502
32658
  *
32503
- * Price: $0.00018 per request.
32659
+ * Price: $0.0002 per request.
32504
32660
  *
32505
32661
  * @example
32506
32662
  * const res = await client.reddit.trendingPosts({ limit: 25 });
@@ -32529,7 +32685,7 @@ declare class RedditNamespace {
32529
32685
  *
32530
32686
  * List a Reddit user's posts by username, sorted by new, top, hot, or controversial, with cursor pagination.
32531
32687
  *
32532
- * Price: $0.00045 per request.
32688
+ * Price: $0.0005 per request.
32533
32689
  *
32534
32690
  * @example
32535
32691
  * const res = await client.reddit.userPosts({ username: "spez" });
@@ -34877,7 +35033,7 @@ declare class SeoNamespace {
34877
35033
  *
34878
35034
  * Get AnyAPI SEO competitor domains for a target domain with shared keyword counts and organic metrics as normalized JSON.
34879
35035
  *
34880
- * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
35036
+ * Price: $0.02864 per request plus $0.00016 per result (maximum $0.18864).
34881
35037
  *
34882
35038
  * @example
34883
35039
  * const res = await client.seo.competitorsDomain({ target: "github.com", language: "en", limit: 10, location: 2840 });
@@ -34888,7 +35044,7 @@ declare class SeoNamespace {
34888
35044
  *
34889
35045
  * Get AnyAPI SEO keyword overlap for two domains with each domain's rankings, URLs, volume, CPC, and difficulty as normalized JSON.
34890
35046
  *
34891
- * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
35047
+ * Price: $0.02864 per request plus $0.00016 per result (maximum $0.18864).
34892
35048
  *
34893
35049
  * @example
34894
35050
  * const res = await client.seo.domainIntersection({ target1: "github.com", target2: "gitlab.com", language: "en", limit: 10, location: 2840 });
@@ -34899,7 +35055,7 @@ declare class SeoNamespace {
34899
35055
  *
34900
35056
  * Get AnyAPI SEO domain ranking, organic traffic, and paid traffic metrics as normalized JSON.
34901
35057
  *
34902
- * Price: $0.0156 per request plus $0 per result (maximum $0.0156).
35058
+ * Price: $0.01455 per request plus $0 per result (maximum $0.01455).
34903
35059
  *
34904
35060
  * @example
34905
35061
  * const res = await client.seo.domainRankOverview({ target: "ahrefs.com", language: "en", location: 2840 });
@@ -34910,7 +35066,7 @@ declare class SeoNamespace {
34910
35066
  *
34911
35067
  * Detect the technology stack a website runs: CMS, analytics, marketing, hosting, and security, plus contacts and social profiles as normalized JSON.
34912
35068
  *
34913
- * Price: $0.012 per request.
35069
+ * Price: $0.0144 per request.
34914
35070
  *
34915
35071
  * @example
34916
35072
  * const res = await client.seo.domainTechnologies({ domain: "hubspot.com" });
@@ -34921,7 +35077,7 @@ declare class SeoNamespace {
34921
35077
  *
34922
35078
  * Find websites running a given technology, category, or on-page term: domain, rank, detected stack, contacts, and social profiles as normalized JSON.
34923
35079
  *
34924
- * Price: $0.012 per request plus $0.0012 per result (maximum $0.132).
35080
+ * Price: $0.01464 per request plus $0.0012 per result (maximum $0.13464).
34925
35081
  *
34926
35082
  * @example
34927
35083
  * const res = await client.seo.domainsByTechnology({ keyword: "highlevel", limit: 10, orderBy: "rank_desc" });
@@ -34939,7 +35095,7 @@ declare class SeoNamespace {
34939
35095
  *
34940
35096
  * Get AnyAPI SEO keyword difficulty scores for one or more keywords as normalized JSON.
34941
35097
  *
34942
- * Price: $0.0156 per request plus $0.00016 per keyword (maximum $0.1756).
35098
+ * Price: $0.01438 per request plus $0.00016 per keyword (maximum $0.17438).
34943
35099
  *
34944
35100
  * @example
34945
35101
  * const res = await client.seo.keywordDifficulty({ keywords: ["seo tools"], language: "en", location: 2840 });
@@ -34950,7 +35106,7 @@ declare class SeoNamespace {
34950
35106
  *
34951
35107
  * Find AnyAPI SEO keyword ideas from seed terms with volume, CPC, competition, difficulty, and intent as normalized JSON.
34952
35108
  *
34953
- * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
35109
+ * Price: $0.01496 per request plus $0.00016 per result (maximum $0.17496).
34954
35110
  *
34955
35111
  * @example
34956
35112
  * const res = await client.seo.keywordIdeas({ keywords: ["project management software"], language: "en", limit: 5, location: 2840 });
@@ -34961,7 +35117,7 @@ declare class SeoNamespace {
34961
35117
  *
34962
35118
  * Get AnyAPI SEO keyword metrics including search volume, CPC, competition, difficulty, and search intent as normalized JSON.
34963
35119
  *
34964
- * Price: $0.0156 per request plus $0.00016 per keyword (maximum $0.1276).
35120
+ * Price: $0.01438 per request plus $0.00016 per keyword (maximum $0.12638).
34965
35121
  *
34966
35122
  * @example
34967
35123
  * const res = await client.seo.keywordOverview({ keywords: ["project management software"], language: "en", location: 2840 });
@@ -34972,7 +35128,7 @@ declare class SeoNamespace {
34972
35128
  *
34973
35129
  * Find AnyAPI SEO keyword suggestions from a seed term with volume, CPC, competition, difficulty, and intent as normalized JSON.
34974
35130
  *
34975
- * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
35131
+ * Price: $0.01496 per request plus $0.00016 per result (maximum $0.17496).
34976
35132
  *
34977
35133
  * @example
34978
35134
  * const res = await client.seo.keywordSuggestions({ keyword: "project management software", language: "en", limit: 5, location: 2840 });
@@ -34983,7 +35139,7 @@ declare class SeoNamespace {
34983
35139
  *
34984
35140
  * Search AnyAPI SEO local pack results with rankings, ratings, addresses, and contact basics as normalized JSON.
34985
35141
  *
34986
- * Price: $0.0026 per request plus $0 per result (maximum $0.0026).
35142
+ * Price: $0.0024 per request plus $0 per result (maximum $0.0024).
34987
35143
  *
34988
35144
  * @example
34989
35145
  * const res = await client.seo.localPack({ keyword: "coffee shop", language: "en", limit: 5, location: "New York,New York,United States" });
@@ -34994,7 +35150,7 @@ declare class SeoNamespace {
34994
35150
  *
34995
35151
  * Get AnyAPI SEO ranked keywords for a domain with rankings, traffic estimates, volume, CPC, difficulty, and intent as normalized JSON.
34996
35152
  *
34997
- * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
35153
+ * Price: $0.01496 per request plus $0.00016 per result (maximum $0.17496).
34998
35154
  *
34999
35155
  * @example
35000
35156
  * const res = await client.seo.rankedKeywords({ target: "github.com", language: "en", limit: 10, location: 2840 });
@@ -35005,7 +35161,7 @@ declare class SeoNamespace {
35005
35161
  *
35006
35162
  * Find AnyAPI SEO related keywords from a seed term with volume, CPC, competition, difficulty, and intent as normalized JSON.
35007
35163
  *
35008
- * Price: $0.0156 per request plus $0.00016 per result (maximum $0.1756).
35164
+ * Price: $0.01496 per request plus $0.00016 per result (maximum $0.17496).
35009
35165
  *
35010
35166
  * @example
35011
35167
  * const res = await client.seo.relatedKeywords({ keyword: "project management software", language: "en", limit: 5, location: 2840 });
@@ -35016,7 +35172,7 @@ declare class SeoNamespace {
35016
35172
  *
35017
35173
  * Classify AnyAPI SEO keyword search intent as normalized JSON.
35018
35174
  *
35019
- * Price: $0.0156 per request plus $0.00016 per keyword (maximum $0.1756).
35175
+ * Price: $0.01438 per request plus $0.00016 per keyword (maximum $0.17438).
35020
35176
  *
35021
35177
  * @example
35022
35178
  * const res = await client.seo.searchIntent({ keywords: ["seo tools"], language: "en" });
@@ -35027,7 +35183,7 @@ declare class SeoNamespace {
35027
35183
  *
35028
35184
  * Get AnyAPI SEO keyword search volume, CPC, competition, bid estimates, and monthly history as normalized JSON.
35029
35185
  *
35030
- * Price: $0.117 per request plus $0 per result (maximum $0.117).
35186
+ * Price: $0.108 per request plus $0 per result (maximum $0.108).
35031
35187
  *
35032
35188
  * @example
35033
35189
  * const res = await client.seo.searchVolume({ keywords: ["seo tools"], language: "en", location: 2840 });
@@ -35617,7 +35773,7 @@ declare class SpotifyNamespace {
35617
35773
  *
35618
35774
  * Fetch a Spotify album's tracklist, play counts, label, and release details by album URL or ID.
35619
35775
  *
35620
- * Price: $0.002 per request.
35776
+ * Price: $0.0012 per request.
35621
35777
  *
35622
35778
  * @example
35623
35779
  * const res = await client.spotify.album({ url: "https://open.spotify.com/album/0pgrg7phBbnwGJ2HBEl9EG" });
@@ -35628,7 +35784,7 @@ declare class SpotifyNamespace {
35628
35784
  *
35629
35785
  * Fetch a Spotify artist's discography (albums, singles, top tracks) and metadata by artist URL or ID.
35630
35786
  *
35631
- * Price: $0.002 per request.
35787
+ * Price: $0.0012 per request.
35632
35788
  *
35633
35789
  * @example
35634
35790
  * const res = await client.spotify.artist({ url: "https://open.spotify.com/artist/3DiDSECUqqY1AuBP8qtaIa" });
@@ -35650,7 +35806,7 @@ declare class SpotifyNamespace {
35650
35806
  *
35651
35807
  * Fetch a Spotify podcast show's name, publisher, description, rating, and topics by show URL or ID.
35652
35808
  *
35653
- * Price: $0.002 per request.
35809
+ * Price: $0.0012 per request.
35654
35810
  *
35655
35811
  * @example
35656
35812
  * const res = await client.spotify.podcast({ url: "https://open.spotify.com/show/3mliji9352UAk3XnWElnDV" });
@@ -35661,7 +35817,7 @@ declare class SpotifyNamespace {
35661
35817
  *
35662
35818
  * List a Spotify podcast show's episodes with titles, durations, descriptions, and release dates by show URL or ID.
35663
35819
  *
35664
- * Price: $0.002 per request.
35820
+ * Price: $0.0012 per request.
35665
35821
  *
35666
35822
  * @example
35667
35823
  * const res = await client.spotify.podcastEpisodes({ url: "https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk" });
@@ -35679,7 +35835,7 @@ declare class SpotifyNamespace {
35679
35835
  *
35680
35836
  * Search Spotify for matching tracks, albums, artists, podcasts, and playlists by keyword.
35681
35837
  *
35682
- * Price: $0.002 per request.
35838
+ * Price: $0.0012 per request.
35683
35839
  *
35684
35840
  * @example
35685
35841
  * const res = await client.spotify.search({ query: "my first million" });
@@ -35690,7 +35846,7 @@ declare class SpotifyNamespace {
35690
35846
  *
35691
35847
  * Fetch a Spotify track's play count, popularity, duration, and album details by track URL or ID.
35692
35848
  *
35693
- * Price: $0.002 per request.
35849
+ * Price: $0.0012 per request.
35694
35850
  *
35695
35851
  * @example
35696
35852
  * const res = await client.spotify.track({ url: "https://open.spotify.com/track/4cOdK2wGLETKBW3PvgPWqT" });
@@ -36382,7 +36538,7 @@ declare class ThreadsNamespace {
36382
36538
  *
36383
36539
  * Fetch a single Threads post by URL: text, author, engagement counts, and timestamp.
36384
36540
  *
36385
- * Price: $0.002 per request.
36541
+ * Price: $0.0012 per request.
36386
36542
  *
36387
36543
  * @example
36388
36544
  * const res = await client.threads.post({ url: "https://www.threads.com/@aaronparnas/post/DZxPYVFkYSq" });
@@ -36393,7 +36549,7 @@ declare class ThreadsNamespace {
36393
36549
  *
36394
36550
  * Fetch a Threads user's public profile (bio, follower count, verification, profile picture) by username.
36395
36551
  *
36396
- * Price: $0.002 per request.
36552
+ * Price: $0.0012 per request.
36397
36553
  *
36398
36554
  * @example
36399
36555
  * const res = await client.threads.profile({ username: "zuck" });
@@ -36404,7 +36560,7 @@ declare class ThreadsNamespace {
36404
36560
  *
36405
36561
  * Search public Threads posts by keyword or hashtag and get normalized post records: text, author, and engagement.
36406
36562
  *
36407
- * Price: $0.002 per request.
36563
+ * Price: $0.0012 per request.
36408
36564
  *
36409
36565
  * @example
36410
36566
  * const res = await client.threads.search({ query: "trump" });
@@ -36415,7 +36571,7 @@ declare class ThreadsNamespace {
36415
36571
  *
36416
36572
  * Search Threads users by name or username and get normalized profile records: username, full name, verification, and picture.
36417
36573
  *
36418
- * Price: $0.002 per request.
36574
+ * Price: $0.0012 per request.
36419
36575
  *
36420
36576
  * @example
36421
36577
  * const res = await client.threads.searchUsers({ query: "shams" });
@@ -36426,7 +36582,7 @@ declare class ThreadsNamespace {
36426
36582
  *
36427
36583
  * List a Threads user's recent public posts by username: text, engagement counts, and post URLs.
36428
36584
  *
36429
- * Price: $0.002 per request.
36585
+ * Price: $0.0012 per request.
36430
36586
  *
36431
36587
  * @example
36432
36588
  * const res = await client.threads.userPosts({ handle: "trendspider" });
@@ -38295,7 +38451,7 @@ declare class TiktokNamespace {
38295
38451
  *
38296
38452
  * Search TikTok's ad library by keyword (top ads with brand, title, spend, CTR, likes, and video info).
38297
38453
  *
38298
- * Price: $0.002 per request.
38454
+ * Price: $0.0012 per request.
38299
38455
  *
38300
38456
  * @example
38301
38457
  * const res = await client.tiktok.adLibrarySearch({ query: "spotify", limit: 20, objective: "conversions", period: 30 });
@@ -38313,7 +38469,7 @@ declare class TiktokNamespace {
38313
38469
  *
38314
38470
  * Search TikTok's EU Commercial Content Library by keyword or advertiser ID.
38315
38471
  *
38316
- * Price: $0.00045 per request.
38472
+ * Price: $0.0005 per request.
38317
38473
  *
38318
38474
  * @example
38319
38475
  * const res = await client.tiktok.adTransparencySearch({ days: 30, limit: 20, query: "nike", region: "DE" });
@@ -38342,7 +38498,7 @@ declare class TiktokNamespace {
38342
38498
  *
38343
38499
  * List the replies to a TikTok comment with cursor pagination (text, author, likes).
38344
38500
  *
38345
- * Price: $0.002 per request.
38501
+ * Price: $0.0012 per request.
38346
38502
  *
38347
38503
  * @example
38348
38504
  * const res = await client.tiktok.commentReplies({ commentId: "7623828115408274207", url: "https://www.tiktok.com/@stoolpresidente/video/7623818255903329566" });
@@ -38360,7 +38516,7 @@ declare class TiktokNamespace {
38360
38516
  *
38361
38517
  * List the followers of a TikTok account by username, returning each follower's profile basics.
38362
38518
  *
38363
- * Price: $0.002 per request.
38519
+ * Price: $0.0012 per request.
38364
38520
  *
38365
38521
  * @example
38366
38522
  * const res = await client.tiktok.followers({ handle: "stoolpresidente" });
@@ -38378,7 +38534,7 @@ declare class TiktokNamespace {
38378
38534
  *
38379
38535
  * List the accounts a TikTok user follows (handle, display name, follower count, bio) by username.
38380
38536
  *
38381
- * Price: $0.002 per request.
38537
+ * Price: $0.0012 per request.
38382
38538
  *
38383
38539
  * @example
38384
38540
  * const res = await client.tiktok.following({ handle: "stoolpresidente" });
@@ -38396,7 +38552,7 @@ declare class TiktokNamespace {
38396
38552
  *
38397
38553
  * List recent TikTok videos for a hashtag (creator, caption, views, likes, shares).
38398
38554
  *
38399
- * Price: $0.00072 per request.
38555
+ * Price: $0.0008 per request.
38400
38556
  *
38401
38557
  * @example
38402
38558
  * const res = await client.tiktok.hashtagVideos({ hashtag: "cooking", limit: 3 });
@@ -38407,7 +38563,7 @@ declare class TiktokNamespace {
38407
38563
  *
38408
38564
  * Check whether a TikTok creator is live and get the current live room (title, viewers, start time) by handle.
38409
38565
  *
38410
- * Price: $0.002 per request.
38566
+ * Price: $0.0012 per request.
38411
38567
  *
38412
38568
  * @example
38413
38569
  * const res = await client.tiktok.live({ handle: "thejustalex" });
@@ -38429,7 +38585,7 @@ declare class TiktokNamespace {
38429
38585
  *
38430
38586
  * Fetch a TikTok creator's public profile (followers, likes, bio, verification) by handle.
38431
38587
  *
38432
- * Price: $0.00045 per request.
38588
+ * Price: $0.0012 per request.
38433
38589
  *
38434
38590
  * @example
38435
38591
  * const res = await client.tiktok.profile({ handle: "zachking" });
@@ -38451,7 +38607,7 @@ declare class TiktokNamespace {
38451
38607
  *
38452
38608
  * Resolve the home region (country) of a TikTok creator by handle.
38453
38609
  *
38454
- * Price: $0.002 per request.
38610
+ * Price: $0.0012 per request.
38455
38611
  *
38456
38612
  * @example
38457
38613
  * const res = await client.tiktok.profileRegion({ handle: "stoolpresidente" });
@@ -38480,7 +38636,7 @@ declare class TiktokNamespace {
38480
38636
  *
38481
38637
  * Search TikTok by hashtag and get matching videos (caption, views, likes, comments, shares) as normalized JSON.
38482
38638
  *
38483
- * Price: $0.002 per request.
38639
+ * Price: $0.0012 per request.
38484
38640
  *
38485
38641
  * @example
38486
38642
  * const res = await client.tiktok.searchHashtag({ query: "recipe" });
@@ -38516,7 +38672,7 @@ declare class TiktokNamespace {
38516
38672
  *
38517
38673
  * Search TikTok's top results for a keyword (caption, views, likes, comments, shares) with cursor pagination.
38518
38674
  *
38519
- * Price: $0.002 per request.
38675
+ * Price: $0.0012 per request.
38520
38676
  *
38521
38677
  * @example
38522
38678
  * const res = await client.tiktok.searchTop({ query: "funny" });
@@ -38552,7 +38708,7 @@ declare class TiktokNamespace {
38552
38708
  *
38553
38709
  * Fetch details for a TikTok song or sound (title, author, duration, cover art, and how many videos use it).
38554
38710
  *
38555
- * Price: $0.002 per request.
38711
+ * Price: $0.0012 per request.
38556
38712
  *
38557
38713
  * @example
38558
38714
  * const res = await client.tiktok.song({ clipId: "7439295283975702544" });
@@ -38563,7 +38719,7 @@ declare class TiktokNamespace {
38563
38719
  *
38564
38720
  * List TikTok videos that use a given song or sound (with descriptions, authors, and engagement stats).
38565
38721
  *
38566
- * Price: $0.002 per request.
38722
+ * Price: $0.0012 per request.
38567
38723
  *
38568
38724
  * @example
38569
38725
  * const res = await client.tiktok.songVideos({ clipId: "7439295283975702544" });
@@ -38592,7 +38748,7 @@ declare class TiktokNamespace {
38592
38748
  *
38593
38749
  * Sample TikTok's For You feed as served to a viewer in one country (caption, views, likes, comments, author). Returns a rotating sample, not a ranked chart.
38594
38750
  *
38595
- * Price: $0.002 per request.
38751
+ * Price: $0.0012 per request.
38596
38752
  *
38597
38753
  * @example
38598
38754
  * const res = await client.tiktok.trendingFeed({ region: "US" });
@@ -38614,7 +38770,7 @@ declare class TiktokNamespace {
38614
38770
  *
38615
38771
  * Fetch a single TikTok video by URL with its caption and engagement counts (views, likes, comments, shares, saves).
38616
38772
  *
38617
- * Price: $0.00045 per request.
38773
+ * Price: $0.0005 per request.
38618
38774
  *
38619
38775
  * @example
38620
38776
  * const res = await client.tiktok.video({ url: "https://www.tiktok.com/@mrbeast/video/7654638524729216287?_r=1&u_code=elgjf3ff8cajhk&preview_pb=0&sharer_language=en&_d=elh6737j6kjl71&share_item_id=7654638524729216287&source=h5_m" });
@@ -38625,7 +38781,7 @@ declare class TiktokNamespace {
38625
38781
  *
38626
38782
  * List the comments on a TikTok video by URL with cursor pagination (text, author, likes, reply count).
38627
38783
  *
38628
- * Price: $0.00072 per request.
38784
+ * Price: $0.0008 per request.
38629
38785
  *
38630
38786
  * @example
38631
38787
  * const res = await client.tiktok.videoComments({ url: "https://www.tiktok.com/@zachking/video/7650468599424945422?_r=1&u_code=f0hj7d780760m9&preview_pb=0&sharer_language=en&_d=f0hj7blh067h71&share_item_id=7650468599424945422&source=h5_m" });
@@ -38654,7 +38810,7 @@ declare class TiktokNamespace {
38654
38810
  *
38655
38811
  * Fetch the spoken-word transcript of a TikTok video by URL.
38656
38812
  *
38657
- * Price: $0.002 per request.
38813
+ * Price: $0.0012 per request.
38658
38814
  *
38659
38815
  * @example
38660
38816
  * const res = await client.tiktok.videoTranscript({ url: "https://www.tiktok.com/@washingtonpost/video/7609177768793787679" });
@@ -39581,7 +39737,7 @@ declare class TiktokShopNamespace {
39581
39737
  *
39582
39738
  * Fetch TikTok Shop product details (title, price, sales, seller, and ratings) from a product URL.
39583
39739
  *
39584
- * Price: $0.002 per request.
39740
+ * Price: $0.0012 per request.
39585
39741
  *
39586
39742
  * @example
39587
39743
  * const res = await client.tiktokShop.product({ url: "https://www.tiktok.com/shop/pdp/goli-ashwagandha-gummies-with-vitamin-d-ksm-66-vegan-non-gmo/1729587769570529799" });
@@ -39603,7 +39759,7 @@ declare class TiktokShopNamespace {
39603
39759
  *
39604
39760
  * Fetch customer reviews for a TikTok Shop product by URL (rating, text, reviewer, country, and verified-purchase flag).
39605
39761
  *
39606
- * Price: $0.002 per request.
39762
+ * Price: $0.0012 per request.
39607
39763
  *
39608
39764
  * @example
39609
39765
  * const res = await client.tiktokShop.productReviews({ url: "https://www.tiktok.com/shop/pdp/cat-nail-clipper-by-potaroma-adjustable-sizes-built-in-file-safe-for-kittens-cats/1731578642912612516" });
@@ -39654,7 +39810,7 @@ declare class TiktokShopNamespace {
39654
39810
  *
39655
39811
  * List the TikTok Shop products a creator showcases (title, price, rating, and sales per product).
39656
39812
  *
39657
- * Price: $0.002 per request.
39813
+ * Price: $0.0012 per request.
39658
39814
  *
39659
39815
  * @example
39660
39816
  * const res = await client.tiktokShop.userShowcase({ handle: "mrtiktokreviews" });
@@ -40509,7 +40665,7 @@ interface TwitterFollowersInput {
40509
40665
  */
40510
40666
  cursor?: string;
40511
40667
  /**
40512
- * Per-page maximum number of followers to return (1-100000, default 200). A provider may return a smaller native page; follow nextCursor for more.
40668
+ * Per-page maximum number of followers to return (default 200). A native page holds up to 200 accounts, so a larger limit still returns at most one native page; follow the response's nextCursor for more.
40513
40669
  * Range: minimum 1, maximum 100000.
40514
40670
  * Default: 200.
40515
40671
  */
@@ -40519,10 +40675,6 @@ interface TwitterFollowersInput {
40519
40675
  * Range: minimum 1.
40520
40676
  */
40521
40677
  preferLatencyUnderMs?: number;
40522
- /**
40523
- * Set true to get up to limit followers in one response instead of provider-native pages, served by a bulk provider when needed.
40524
- */
40525
- requireSinglePage?: boolean;
40526
40678
  /**
40527
40679
  * The X (Twitter) username to fetch followers for, without the @ prefix (e.g. elonmusk).
40528
40680
  */
@@ -40585,7 +40737,7 @@ interface TwitterFollowingInput {
40585
40737
  */
40586
40738
  cursor?: string;
40587
40739
  /**
40588
- * Per-page maximum number of followed accounts to return (1-100000, default 200). A provider may return a smaller native page; follow nextCursor for more.
40740
+ * Per-page maximum number of followed accounts to return (default 200). A native page holds up to 200 accounts, so a larger limit still returns at most one native page; follow the response's nextCursor for more.
40589
40741
  * Range: minimum 1, maximum 100000.
40590
40742
  * Default: 200.
40591
40743
  */
@@ -40595,10 +40747,6 @@ interface TwitterFollowingInput {
40595
40747
  * Range: minimum 1.
40596
40748
  */
40597
40749
  preferLatencyUnderMs?: number;
40598
- /**
40599
- * Set true to get up to limit accounts in one response instead of provider-native pages, served by a bulk provider when needed.
40600
- */
40601
- requireSinglePage?: boolean;
40602
40750
  /**
40603
40751
  * The X (Twitter) username to fetch the following list for, without the @ prefix (e.g. elonmusk).
40604
40752
  */
@@ -41547,7 +41695,7 @@ declare class TwitterNamespace {
41547
41695
  *
41548
41696
  * Fetch a Twitter/X community's public details (name, description, member count, join policy) by URL.
41549
41697
  *
41550
- * Price: $0.00009 per request.
41698
+ * Price: $0.0001 per request.
41551
41699
  *
41552
41700
  * @example
41553
41701
  * const res = await client.twitter.community({ url: "https://x.com/i/communities/1926186499399139650" });
@@ -41567,7 +41715,7 @@ declare class TwitterNamespace {
41567
41715
  /**
41568
41716
  * X / Twitter Followers
41569
41717
  *
41570
- * 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.
41718
+ * Fetch the follower list of any public X (Twitter) account by username with cursor pagination. Limit is a per-page maximum and a native page holds up to 200 accounts; follow the response's nextCursor for more.
41571
41719
  *
41572
41720
  * Price: $0.00075 per request.
41573
41721
  *
@@ -41585,7 +41733,7 @@ declare class TwitterNamespace {
41585
41733
  /**
41586
41734
  * X / Twitter Following
41587
41735
  *
41588
- * 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.
41736
+ * List the accounts a public X (Twitter) account follows by username with cursor pagination. Limit is a per-page maximum and a native page holds up to 200 accounts; follow the response's nextCursor for more.
41589
41737
  *
41590
41738
  * Price: $0.00075 per request.
41591
41739
  *
@@ -41645,7 +41793,7 @@ declare class TwitterNamespace {
41645
41793
  *
41646
41794
  * Search X (Twitter) communities by keyword and get their id, name, topic, and member count with cursor pagination. This is how you find a community URL to pass to twitter.community or twitter.community_tweets.
41647
41795
  *
41648
- * Price: $0.00009 per request plus $0.00009 per result (maximum $0.00099).
41796
+ * Price: $0.0001 per request plus $0.0001 per result (maximum $0.0011).
41649
41797
  *
41650
41798
  * @example
41651
41799
  * const res = await client.twitter.searchCommunities({ query: "artificial intelligence" });
@@ -41692,7 +41840,7 @@ declare class TwitterNamespace {
41692
41840
  *
41693
41841
  * Get current X (Twitter) trends for worldwide, a country, or a city in X ranking order, including the resolved location.
41694
41842
  *
41695
- * Price: $0.00009 per request.
41843
+ * Price: $0.0001 per request.
41696
41844
  *
41697
41845
  * @example
41698
41846
  * const res = await client.twitter.trends({ limit: 10, location: "US" });
@@ -41714,7 +41862,7 @@ declare class TwitterNamespace {
41714
41862
  *
41715
41863
  * Extract the spoken transcript from a Twitter/X video tweet by URL.
41716
41864
  *
41717
- * Price: $0.002 per request.
41865
+ * Price: $0.0012 per request.
41718
41866
  *
41719
41867
  * @example
41720
41868
  * const res = await client.twitter.tweetTranscript({ url: "https://x.com/TheoVon/status/1916982720317821050" });
@@ -41767,21 +41915,13 @@ interface UpworkJobsInput {
41767
41915
  * One of: entry, intermediate, expert.
41768
41916
  */
41769
41917
  experienceLevel?: "entry" | "intermediate" | "expert";
41770
- /**
41771
- * Budget range [min, max] in USD for fixed-price jobs (e.g. [500, 5000]).
41772
- */
41773
- fixedPriceRange?: number[];
41774
- /**
41775
- * Hourly rate range [min, max] in USD/hour for hourly jobs (e.g. [20, 50]).
41776
- */
41777
- hourlyRateRange?: number[];
41778
41918
  /**
41779
41919
  * Filter by payment type: fixed-price or hourly jobs.
41780
41920
  * One of: fixed, hourly.
41781
41921
  */
41782
41922
  jobType?: "fixed" | "hourly";
41783
41923
  /**
41784
- * Maximum number of results to return (10-25, default 25). You are billed per result returned, so a lower limit costs less. This search has a floor of 10 results per page.
41924
+ * Maximum number of results to return (10-25, default 25). You are billed per result returned, so a lower limit costs less.
41785
41925
  * Range: minimum 10, maximum 25.
41786
41926
  */
41787
41927
  limit?: number;
@@ -41811,7 +41951,7 @@ interface UpworkJobsInput {
41811
41951
  }
41812
41952
  interface UpworkJobsItem {
41813
41953
  /**
41814
- * Fixed budget or hourly range.
41954
+ * Fixed-price budget in USD (e.g. $4000). Absent on hourly jobs, which carry hourlyRateMin and hourlyRateMax.
41815
41955
  */
41816
41956
  budget?: string;
41817
41957
  /**
@@ -41839,6 +41979,14 @@ interface UpworkJobsItem {
41839
41979
  * Required experience level (e.g. Entry, Intermediate, Expert).
41840
41980
  */
41841
41981
  experienceLevel?: string;
41982
+ /**
41983
+ * Upper bound of the client's hourly rate range in USD. Absent on fixed-price jobs.
41984
+ */
41985
+ hourlyRateMax?: number;
41986
+ /**
41987
+ * Lower bound of the client's hourly rate range in USD. Absent on fixed-price jobs.
41988
+ */
41989
+ hourlyRateMin?: number;
41842
41990
  /**
41843
41991
  * Upwork job identifier. Populated whenever the provider has data for the entity.
41844
41992
  */
@@ -41890,7 +42038,7 @@ declare class UpworkNamespace {
41890
42038
  *
41891
42039
  * Search Upwork job postings by keyword, with up to 25 fresh listings per request.
41892
42040
  *
41893
- * Price: $0 per request plus $0.00363 per result (maximum $0.0908).
42041
+ * Price: $0.0011 per request plus $0.0011 per result (maximum $0.0286).
41894
42042
  *
41895
42043
  * @example
41896
42044
  * const res = await client.upwork.jobs({ query: "web developer", jobType: "fixed", limit: 10 });
@@ -44155,7 +44303,7 @@ declare class YoutubeNamespace {
44155
44303
  *
44156
44304
  * Fetch a YouTube channel's stats (subscribers, video count, total views, description) by handle or channel ID.
44157
44305
  *
44158
- * Price: $0.00045 per request.
44306
+ * Price: $0.0005 per request.
44159
44307
  *
44160
44308
  * @example
44161
44309
  * const res = await client.youtube.channel({ handle: "@mkbhd" });
@@ -44166,7 +44314,7 @@ declare class YoutubeNamespace {
44166
44314
  *
44167
44315
  * List a YouTube channel's community posts by handle or channel ID with cursor pagination (text, likes, image, publish time).
44168
44316
  *
44169
- * Price: $0.002 per request.
44317
+ * Price: $0.0012 per request.
44170
44318
  *
44171
44319
  * @example
44172
44320
  * const res = await client.youtube.channelCommunityPosts({ handle: "@MrBeast" });
@@ -44195,7 +44343,7 @@ declare class YoutubeNamespace {
44195
44343
  *
44196
44344
  * List a YouTube channel's live and past-live streams by handle or channel ID with cursor pagination (title, views, length, publish time).
44197
44345
  *
44198
- * Price: $0.002 per request.
44346
+ * Price: $0.0012 per request.
44199
44347
  *
44200
44348
  * @example
44201
44349
  * const res = await client.youtube.channelLives({ handle: "@IShowSpeed" });
@@ -44213,7 +44361,7 @@ declare class YoutubeNamespace {
44213
44361
  *
44214
44362
  * List a YouTube channel's playlists by handle or channel ID with cursor pagination (title, video count, thumbnail).
44215
44363
  *
44216
- * Price: $0.002 per request.
44364
+ * Price: $0.0012 per request.
44217
44365
  *
44218
44366
  * @example
44219
44367
  * const res = await client.youtube.channelPlaylists({ handle: "@veritasium" });
@@ -44231,7 +44379,7 @@ declare class YoutubeNamespace {
44231
44379
  *
44232
44380
  * List a YouTube channel's Shorts by handle or channel ID with cursor pagination, views, and publish timestamps.
44233
44381
  *
44234
- * Price: $0.002 per request.
44382
+ * Price: $0.0012 per request.
44235
44383
  *
44236
44384
  * @example
44237
44385
  * const res = await client.youtube.channelShorts({ handle: "@zachking", sort: "latest" });
@@ -44249,7 +44397,7 @@ declare class YoutubeNamespace {
44249
44397
  *
44250
44398
  * List a YouTube channel's videos by handle or channel ID with cursor pagination (title, views, length, publish time).
44251
44399
  *
44252
- * Price: $0.00045 per request.
44400
+ * Price: $0.0005 per request.
44253
44401
  *
44254
44402
  * @example
44255
44403
  * const res = await client.youtube.channelVideos({ handle: "@mkbhd" });
@@ -44267,7 +44415,7 @@ declare class YoutubeNamespace {
44267
44415
  *
44268
44416
  * List replies to a YouTube comment using a continuation token with cursor pagination (text, author, likes, publish time).
44269
44417
  *
44270
- * Price: $0.002 per request.
44418
+ * Price: $0.0012 per request.
44271
44419
  *
44272
44420
  * @example
44273
44421
  * const res = await client.youtube.commentReplies({ continuationToken: "Eg0SC19fZm1EajBaSjFRGAYygwEaUBIaVWd3aXRjRk9fdmtpM0x4LUNfZDRBYUFCQWciAggAKhhVQ1g2T1EzRGtjc2JZTkU2SDh1UVF1VkEyC19fZm1EajBaSjFRQABICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3dpdGNGT192a2kzTHgtQ19kNEFhQUJBZw==" });
@@ -44278,7 +44426,7 @@ declare class YoutubeNamespace {
44278
44426
  *
44279
44427
  * Fetch a single YouTube community post by URL (text, images, channel, publish time).
44280
44428
  *
44281
- * Price: $0.002 per request.
44429
+ * Price: $0.0012 per request.
44282
44430
  *
44283
44431
  * @example
44284
44432
  * const res = await client.youtube.communityPost({ url: "https://www.youtube.com/post/Ugkx1LonSRBBUqASv-J8j9_FesxwlMAhT3_e" });
@@ -44289,7 +44437,7 @@ declare class YoutubeNamespace {
44289
44437
  *
44290
44438
  * List every video in a YouTube playlist (title, length, and channel per video plus playlist owner and totals).
44291
44439
  *
44292
- * Price: $0.002 per request.
44440
+ * Price: $0.0012 per request.
44293
44441
  *
44294
44442
  * @example
44295
44443
  * const res = await client.youtube.playlist({ playlistId: "PLMC9KNkIncKtPzgY-5rmhvj7fax8fdxoj" });
@@ -44300,7 +44448,7 @@ declare class YoutubeNamespace {
44300
44448
  *
44301
44449
  * Search YouTube and get matching videos (title, channel, views, length, publish time) as normalized JSON.
44302
44450
  *
44303
- * Price: $0.00045 per request.
44451
+ * Price: $0.0005 per request.
44304
44452
  *
44305
44453
  * @example
44306
44454
  * const res = await client.youtube.search({ query: "how to cook rice" });
@@ -44318,7 +44466,7 @@ declare class YoutubeNamespace {
44318
44466
  *
44319
44467
  * Search YouTube videos by hashtag with cursor pagination (title, channel, views, length, publish time).
44320
44468
  *
44321
- * Price: $0.002 per request.
44469
+ * Price: $0.0012 per request.
44322
44470
  *
44323
44471
  * @example
44324
44472
  * const res = await client.youtube.searchHashtag({ hashtag: "funny" });
@@ -44336,7 +44484,7 @@ declare class YoutubeNamespace {
44336
44484
  *
44337
44485
  * Search YouTube Shorts by keyword and get matching Shorts (title, views, URL) with cursor pagination as normalized JSON.
44338
44486
  *
44339
- * Price: $0.002 per request.
44487
+ * Price: $0.0012 per request.
44340
44488
  *
44341
44489
  * @example
44342
44490
  * const res = await client.youtube.searchShorts({ query: "cats" });
@@ -44354,7 +44502,7 @@ declare class YoutubeNamespace {
44354
44502
  *
44355
44503
  * List currently trending YouTube Shorts (title, channel, views, likes, duration).
44356
44504
  *
44357
- * Price: $0.002 per request.
44505
+ * Price: $0.0012 per request.
44358
44506
  *
44359
44507
  * @example
44360
44508
  * const res = await client.youtube.trendingShorts({});
@@ -44365,7 +44513,7 @@ declare class YoutubeNamespace {
44365
44513
  *
44366
44514
  * Fetch a YouTube video or Short's metadata (title, channel, views, likes, duration, publish date) by URL or ID.
44367
44515
  *
44368
- * Price: $0.00125 per request.
44516
+ * Price: $0.0012 per request.
44369
44517
  *
44370
44518
  * @example
44371
44519
  * const res = await client.youtube.video({ url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ" });
@@ -44376,7 +44524,7 @@ declare class YoutubeNamespace {
44376
44524
  *
44377
44525
  * List the comments on a YouTube video or Short by URL with cursor pagination (text, author, likes, reply count).
44378
44526
  *
44379
- * Price: $0.002 per request.
44527
+ * Price: $0.0012 per request.
44380
44528
  *
44381
44529
  * @example
44382
44530
  * const res = await client.youtube.videoComments({ url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ" });
@@ -44394,7 +44542,7 @@ declare class YoutubeNamespace {
44394
44542
  *
44395
44543
  * Detect suspected sponsors and paid promotions in a YouTube video by URL (sponsor names, websites, confidence).
44396
44544
  *
44397
- * Price: $0.002 per request.
44545
+ * Price: $0.0012 per request.
44398
44546
  *
44399
44547
  * @example
44400
44548
  * const res = await client.youtube.videoSponsors({ url: "https://www.youtube.com/watch?v=AVO0ifle-OU" });
@@ -45248,7 +45396,7 @@ declare class ZillowNamespace {
45248
45396
  *
45249
45397
  * Fetch full details for a single Zillow property listing by URL (price, facts and features, photos, and price/tax history).
45250
45398
  *
45251
- * Price: $0.00045 per request.
45399
+ * Price: $0.0005 per request.
45252
45400
  *
45253
45401
  * @example
45254
45402
  * const res = await client.zillow.property({ url: "https://www.zillow.com/homedetails/4510-Secure-Ln-Austin-TX-78725/83126034_zpid/" });
@@ -45259,7 +45407,7 @@ declare class ZillowNamespace {
45259
45407
  *
45260
45408
  * 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.
45261
45409
  *
45262
- * Price: $0.00045 per request.
45410
+ * Price: $0.0005 per request.
45263
45411
  *
45264
45412
  * @example
45265
45413
  * const res = await client.zillow.search({ location: "Austin, TX", limit: 3, maxPrice: 900000, minBedrooms: 3, operation: "buy" });
@@ -45954,6 +46102,11 @@ interface SkuMap {
45954
46102
  data: InstagramHighlightDetailData;
45955
46103
  result: RunResult<InstagramHighlightDetailData>;
45956
46104
  };
46105
+ "instagram.location_posts": {
46106
+ input: InstagramLocationPostsInput;
46107
+ data: InstagramLocationPostsData;
46108
+ result: RunResult<InstagramLocationPostsData>;
46109
+ };
45957
46110
  "instagram.media_transcript": {
45958
46111
  input: InstagramMediaTranscriptInput;
45959
46112
  data: InstagramMediaTranscriptData;
@@ -45969,6 +46122,11 @@ interface SkuMap {
45969
46122
  data: InstagramPostCommentsData;
45970
46123
  result: RunResult<InstagramPostCommentsData>;
45971
46124
  };
46125
+ "instagram.post_likers": {
46126
+ input: InstagramPostLikersInput;
46127
+ data: InstagramPostLikersData;
46128
+ result: RunResult<InstagramPostLikersData>;
46129
+ };
45972
46130
  "instagram.profile": {
45973
46131
  input: InstagramProfileInput;
45974
46132
  data: InstagramProfileData;
@@ -45999,11 +46157,21 @@ interface SkuMap {
45999
46157
  data: InstagramSearchHashtagData;
46000
46158
  result: RunResult<InstagramSearchHashtagData>;
46001
46159
  };
46160
+ "instagram.search_locations": {
46161
+ input: InstagramSearchLocationsInput;
46162
+ data: InstagramSearchLocationsData;
46163
+ result: RunResult<InstagramSearchLocationsData>;
46164
+ };
46002
46165
  "instagram.search_profiles": {
46003
46166
  input: InstagramSearchProfilesInput;
46004
46167
  data: InstagramSearchProfilesData;
46005
46168
  result: RunResult<InstagramSearchProfilesData>;
46006
46169
  };
46170
+ "instagram.similar_profiles": {
46171
+ input: InstagramSimilarProfilesInput;
46172
+ data: InstagramSimilarProfilesData;
46173
+ result: RunResult<InstagramSimilarProfilesData>;
46174
+ };
46007
46175
  "instagram.stories_full": {
46008
46176
  input: InstagramStoriesFullInput;
46009
46177
  data: InstagramStoriesFullData;
@@ -46039,6 +46207,11 @@ interface SkuMap {
46039
46207
  data: InstagramUserReelsData;
46040
46208
  result: RunResult<InstagramUserReelsData>;
46041
46209
  };
46210
+ "instagram.user_reposts": {
46211
+ input: InstagramUserRepostsInput;
46212
+ data: InstagramUserRepostsData;
46213
+ result: RunResult<InstagramUserRepostsData>;
46214
+ };
46042
46215
  "job_search.theirstack": {
46043
46216
  input: JobSearchTheirstackInput;
46044
46217
  data: JobSearchTheirstackData;
@@ -46209,20 +46382,15 @@ interface SkuMap {
46209
46382
  data: NaverBlogSearchData;
46210
46383
  result: RunResult<NaverBlogSearchData>;
46211
46384
  };
46212
- "pandaexpress.locations": {
46213
- input: PandaexpressLocationsInput;
46214
- data: PandaexpressLocationsData;
46215
- result: RunResult<PandaexpressLocationsData>;
46216
- };
46217
- "pandaexpress.menu": {
46218
- input: PandaexpressMenuInput;
46219
- data: PandaexpressMenuData;
46220
- result: RunResult<PandaexpressMenuData>;
46385
+ "nextdoor.business": {
46386
+ input: NextdoorBusinessInput;
46387
+ data: NextdoorBusinessData;
46388
+ result: RunResult<NextdoorBusinessData>;
46221
46389
  };
46222
- "pandaexpress.nutrition": {
46223
- input: PandaexpressNutritionInput;
46224
- data: PandaexpressNutritionData;
46225
- result: RunResult<PandaexpressNutritionData>;
46390
+ "nextdoor.search": {
46391
+ input: NextdoorSearchInput;
46392
+ data: NextdoorSearchData;
46393
+ result: RunResult<NextdoorSearchData>;
46226
46394
  };
46227
46395
  "people_search.ai_ark": {
46228
46396
  input: PeopleSearchAiArkInput;
@@ -46274,11 +46442,6 @@ interface SkuMap {
46274
46442
  data: PersonSkipTraceData;
46275
46443
  result: RunResult<PersonSkipTraceData>;
46276
46444
  };
46277
- "person_enrichment.aviato": {
46278
- input: PersonEnrichmentAviatoInput;
46279
- data: PersonEnrichmentAviatoData;
46280
- result: RunResult<PersonEnrichmentAviatoData>;
46281
- };
46282
46445
  "person_enrichment.bettercontact": {
46283
46446
  input: PersonEnrichmentBettercontactInput;
46284
46447
  data: PersonEnrichmentBettercontactData;
@@ -47262,9 +47425,9 @@ declare class AnyAPI extends AnyAPI$1 {
47262
47425
  */
47263
47426
  get naver(): NaverNamespace;
47264
47427
  /**
47265
- * Typed methods for the pandaexpress platform.
47428
+ * Typed methods for the nextdoor platform.
47266
47429
  */
47267
- get pandaexpress(): PandaexpressNamespace;
47430
+ get nextdoor(): NextdoorNamespace;
47268
47431
  /**
47269
47432
  * Typed methods for the people_search platform.
47270
47433
  */
@@ -47407,4 +47570,4 @@ declare class AnyAPI extends AnyAPI$1 {
47407
47570
  get zillow(): ZillowNamespace;
47408
47571
  }
47409
47572
 
47410
- export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, CapterraNamespace, type CapterraReviewsAlternativesConsidered, type CapterraReviewsData, type CapterraReviewsInput, type CapterraReviewsItem, type CapterraReviewsSwitchedFrom, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, ChatgptNamespace, type ChatgptSearchCitation, type ChatgptSearchData, type ChatgptSearchInput, type ChatgptSearchSearchResult, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3HeadcountTimeserie, type CompanyEnrichmentCrustdataV3Input, type CompanyEnrichmentCrustdataV3SicCode, type CompanyEnrichmentLushaData, type CompanyEnrichmentLushaInput, type CompanyEnrichmentLushaNaicsCode, type CompanyEnrichmentLushaOffice, type CompanyEnrichmentLushaSicCode, CompanyEnrichmentNamespace, type CompanyEnrichmentPeopledatalabsData, type CompanyEnrichmentPeopledatalabsInput, type CompanyEnrichmentPeopledatalabsNaicsCode, type CompanyEnrichmentPeopledatalabsSicCode, type CompanyEnrichmentProspeoData, type CompanyEnrichmentProspeoEvent, type CompanyEnrichmentProspeoInput, CompanyNamespace, type CompanyResearchData, type CompanyResearchInput, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkDiversityInvestment, type CompanySearchAiArkFundingRound, type CompanySearchAiArkInput, type CompanySearchAiArkLocation, type CompanySearchAiArkSpotlight, type CompanySearchAiArkTechnologie, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, type CompanySearchFullenrichCompanie, type CompanySearchFullenrichCompanyId, type CompanySearchFullenrichData, type CompanySearchFullenrichDomain, type CompanySearchFullenrichFoundedYear, type CompanySearchFullenrichHeadcount, type CompanySearchFullenrichHeadquartersLocation, type CompanySearchFullenrichIndustrie, type CompanySearchFullenrichInput, type CompanySearchFullenrichKeyword, type CompanySearchFullenrichLinkedinUrl, type CompanySearchFullenrichName, type CompanySearchFullenrichOffice, type CompanySearchFullenrichSpecialtie, type CompanySearchFullenrichType, CompanySearchNamespace, type CompanySearchPeopledatalabsCompanie, type CompanySearchPeopledatalabsData, type CompanySearchPeopledatalabsInput, type CompanySearchPeopledatalabsNaicsCode, type CompanySearchPeopledatalabsSicCode, type CompanySearchProspeoCompanie, type CompanySearchProspeoData, type CompanySearchProspeoEvent, type CompanySearchProspeoInput, type CompanySearchQuickenrichCompanie, type CompanySearchQuickenrichData, type CompanySearchQuickenrichInput, type CompanySearchTheirstackCompanie, type CompanySearchTheirstackData, type CompanySearchTheirstackInput, type CompanySearchTheirstackTechnologiesFound, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryExecution, type DiscoveryExecutionMode, type DiscoveryLane, type DiscoveryLatency, type DiscoveryPricing, type DiscoverySource, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbayProductData, type EbayProductFullData, type EbayProductFullInput, type EbayProductFullItem, type EbayProductFullSpecification, type EbayProductInput, type EbayProductItem, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingHunterCountData, type EmailFindingHunterCountInput, type EmailFindingHunterDomainData, type EmailFindingHunterDomainEmail, type EmailFindingHunterDomainInput, type EmailFindingHunterDomainSource, type EmailFindingIcypeasData, type EmailFindingIcypeasEmail, type EmailFindingIcypeasInput, EmailFindingNamespace, type EmailFindingQuickenrichData, type EmailFindingQuickenrichInput, type EmailFindingZerobounceData, type EmailFindingZerobounceDomainData, type EmailFindingZerobounceDomainInput, type EmailFindingZerobounceDomainOtherFormat, type EmailFindingZerobounceInput, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, type EmailVerificationZerobounceActivityData, type EmailVerificationZerobounceActivityInput, type EmailVerificationZerobounceData, type EmailVerificationZerobounceInput, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsFullCreative, type FacebookAdDetailsFullData, type FacebookAdDetailsFullImage, type FacebookAdDetailsFullInput, type FacebookAdDetailsFullVideo, type FacebookAdDetailsInput, type FacebookAdDetailsMedia, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookAdsSearchMedia, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookCompanyAdsMedia, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsMedia, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, G2Namespace, type G2ReviewsData, type G2ReviewsInput, type G2ReviewsItem, GeminiNamespace, type GeminiSearchCitation, type GeminiSearchData, type GeminiSearchInput, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAiModeCitation, type GoogleAiModeData, type GoogleAiModeInput, type GoogleAiOverviewCitation, type GoogleAiOverviewData, type GoogleAiOverviewInput, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearch100Data, type GoogleSearch100Input, type GoogleSearch100Result, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHashtagRecentPostsData, type InstagramHashtagRecentPostsInput, type InstagramHashtagRecentPostsMedia, type InstagramHashtagRecentPostsPost, type InstagramHashtagTopPostsData, type InstagramHashtagTopPostsInput, type InstagramHashtagTopPostsMedia, type InstagramHashtagTopPostsPost, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramProfileBioLink, type InstagramProfileContactData, type InstagramProfileContactInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsMedia, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsMedia, type InstagramUserReelsReel, InsufficientBalanceError, JobSearchNamespace, type JobSearchTheirstackData, type JobSearchTheirstackInput, type JobSearchTheirstackJob, type JobSearchTheirstackLocation, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinArticleData, type LinkedinArticleInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePostsFullBreakdown, type LinkedinProfilePostsFullContentAnnotation, type LinkedinProfilePostsFullData, type LinkedinProfilePostsFullImage, type LinkedinProfilePostsFullInput, type LinkedinProfilePostsFullItem, type LinkedinProfilePostsFullRepostImage, type LinkedinProfilePostsThinData, type LinkedinProfilePostsThinImage, type LinkedinProfilePostsThinInput, type LinkedinProfilePostsThinItem, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsFullBreakdown, type LinkedinSearchPostsFullData, type LinkedinSearchPostsFullInput, type LinkedinSearchPostsFullPollOption, type LinkedinSearchPostsFullPost, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, type MobilePhoneAiArkData, type MobilePhoneAiArkInput, type MobilePhoneLeadmagicData, type MobilePhoneLeadmagicInput, MobilePhoneNamespace, type NaverBlogSearchData, type NaverBlogSearchInput, type NaverBlogSearchItem, NaverNamespace, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, type PeopleSearchAiArkCompanyAcquisition, type PeopleSearchAiArkCompanyLocation, type PeopleSearchAiArkCompanyTechnologie, type PeopleSearchAiArkData, type PeopleSearchAiArkEducation, type PeopleSearchAiArkExperience, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchAiArkPosition, type PeopleSearchAiArkSupportedLocale, type PeopleSearchCrustdataV3AllEmployer, type PeopleSearchCrustdataV3Certification, type PeopleSearchCrustdataV3CurrentEmployer, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3PastEmployer, type PeopleSearchCrustdataV3Profile, type PeopleSearchFullenrichCurrentCompanyDomain, type PeopleSearchFullenrichCurrentCompanyFoundedYear, type PeopleSearchFullenrichCurrentCompanyHeadcount, type PeopleSearchFullenrichCurrentCompanyHeadquarter, type PeopleSearchFullenrichCurrentCompanyId, type PeopleSearchFullenrichCurrentCompanyIndustrie, type PeopleSearchFullenrichCurrentCompanyLinkedinUrl, type PeopleSearchFullenrichCurrentCompanyName, type PeopleSearchFullenrichCurrentCompanySpecialtie, type PeopleSearchFullenrichCurrentCompanyType, type PeopleSearchFullenrichCurrentPositionJobFunction, type PeopleSearchFullenrichCurrentPositionSeniorityLevel, type PeopleSearchFullenrichCurrentPositionSubFunction, type PeopleSearchFullenrichCurrentPositionTitle, type PeopleSearchFullenrichCurrentPositionYearsIn, type PeopleSearchFullenrichData, type PeopleSearchFullenrichEducation, type PeopleSearchFullenrichInput, type PeopleSearchFullenrichLanguage, type PeopleSearchFullenrichOffice, type PeopleSearchFullenrichPastCompanyDomain, type PeopleSearchFullenrichPastCompanyName, type PeopleSearchFullenrichPastPositionTitle, type PeopleSearchFullenrichPeople, type PeopleSearchFullenrichPersonId, type PeopleSearchFullenrichPersonLanguage, type PeopleSearchFullenrichPersonLinkedinUrl, type PeopleSearchFullenrichPersonLocation, type PeopleSearchFullenrichPersonName, type PeopleSearchFullenrichPersonSkill, type PeopleSearchLushaData, type PeopleSearchLushaInput, type PeopleSearchLushaPeople, PeopleSearchNamespace, type PeopleSearchPeopledatalabsData, type PeopleSearchPeopledatalabsEducation, type PeopleSearchPeopledatalabsEmail, type PeopleSearchPeopledatalabsExperience, type PeopleSearchPeopledatalabsInput, type PeopleSearchPeopledatalabsPeople, type PeopleSearchPeopledatalabsProfile, type PeopleSearchProspeoData, type PeopleSearchProspeoEvent, type PeopleSearchProspeoInput, type PeopleSearchProspeoJobHistory, type PeopleSearchProspeoPeople, type PeopleSearchQuickenrichCompanyData, type PeopleSearchQuickenrichCompanyInput, type PeopleSearchQuickenrichCompanyPeople, type PeopleSearchQuickenrichData, type PeopleSearchQuickenrichInput, type PeopleSearchQuickenrichPeople, PerplexityNamespace, type PerplexitySearchCitation, type PerplexitySearchData, type PerplexitySearchInput, type PersonEnrichmentAviatoCertification, type PersonEnrichmentAviatoData, type PersonEnrichmentAviatoDegree, type PersonEnrichmentAviatoEducation, type PersonEnrichmentAviatoExperience, type PersonEnrichmentAviatoInput, type PersonEnrichmentAviatoLanguage, type PersonEnrichmentAviatoPosition, type PersonEnrichmentBettercontactData, type PersonEnrichmentBettercontactInput, type PersonEnrichmentFullenrichBulkContact, type PersonEnrichmentFullenrichBulkData, type PersonEnrichmentFullenrichBulkEducation, type PersonEnrichmentFullenrichBulkEmploymentHistory, type PersonEnrichmentFullenrichBulkInput, type PersonEnrichmentFullenrichBulkLanguage, type PersonEnrichmentFullenrichBulkOffice, type PersonEnrichmentFullenrichBulkPersonalEmail, type PersonEnrichmentFullenrichBulkWorkEmail, type PersonEnrichmentFullenrichReverseEmailContact, type PersonEnrichmentFullenrichReverseEmailData, type PersonEnrichmentFullenrichReverseEmailEducation, type PersonEnrichmentFullenrichReverseEmailEmploymentHistory, type PersonEnrichmentFullenrichReverseEmailInput, type PersonEnrichmentFullenrichReverseEmailLanguage, type PersonEnrichmentFullenrichReverseEmailOffice, type PersonEnrichmentLushaData, type PersonEnrichmentLushaEmail, type PersonEnrichmentLushaInput, type PersonEnrichmentLushaNaicsCode, type PersonEnrichmentLushaPhone, type PersonEnrichmentLushaSicCode, PersonEnrichmentNamespace, type PersonEnrichmentPeopledatalabsData, type PersonEnrichmentPeopledatalabsEducation, type PersonEnrichmentPeopledatalabsEmail, type PersonEnrichmentPeopledatalabsExperience, type PersonEnrichmentPeopledatalabsInput, type PersonEnrichmentPeopledatalabsProfile, type PersonEnrichmentPeopledatalabsStreetAddresse, type PersonEnrichmentProspeoData, type PersonEnrichmentProspeoEvent, type PersonEnrichmentProspeoInput, type PersonEnrichmentProspeoJobHistory, type PersonEnrichmentQuickenrichData, type PersonEnrichmentQuickenrichInput, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostCommentsMedia, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchMedia, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsMedia, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, RequestPendingError, type RequestSnapshot, type RequestStatus, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoDomainTechnologiesData, type SeoDomainTechnologiesInput, type SeoDomainsByTechnologyData, type SeoDomainsByTechnologyDomain, type SeoDomainsByTechnologyInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, type StartOptions, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, TechnographicsNamespace, type TechnographicsTheirstackData, type TechnographicsTheirstackInput, type TechnographicsTheirstackTechnologie, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAdTransparencySearchAd, type TiktokAdTransparencySearchData, type TiktokAdTransparencySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokPhotosData, type TiktokPhotosImage, type TiktokPhotosInput, type TiktokProfileContactData, type TiktokProfileContactEmail, type TiktokProfileContactInput, type TiktokProfileContactSocialLink, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, type TiktokShopCategoriesCategorie, type TiktokShopCategoriesChildren, type TiktokShopCategoriesData, type TiktokShopCategoriesInput, type TiktokShopCategoryProductsData, type TiktokShopCategoryProductsInput, type TiktokShopCategoryProductsItem, type TiktokShopCreatorAudienceAge, type TiktokShopCreatorAudienceGender, type TiktokShopCreatorAudienceLocation, type TiktokShopCreatorCategorie, type TiktokShopCreatorData, type TiktokShopCreatorInput, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductFullData, type TiktokShopProductFullInput, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopSearchSuggestionsData, type TiktokShopSearchSuggestionsInput, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTopAdsSearchAd, type TiktokTopAdsSearchData, type TiktokTopAdsSearchInput, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokTrendingHashtagsData, type TiktokTrendingHashtagsInput, type TiktokTrendingHashtagsItem, type TiktokTrendingHashtagsPopularity, type TiktokTrendingHashtagsTopCreator, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoDownloadData, type TiktokVideoDownloadInput, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptFullData, type TiktokVideoTranscriptFullInput, type TiktokVideoTranscriptFullSegment, type TiktokVideoTranscriptFullWord, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterRepliesMedia, type TwitterSearchCommunitiesCommunitie, type TwitterSearchCommunitiesData, type TwitterSearchCommunitiesInput, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterSearchMedia, type TwitterSearchUsersData, type TwitterSearchUsersInput, type TwitterSearchUsersUser, type TwitterThreadData, type TwitterThreadInput, type TwitterThreadMedia, type TwitterThreadTweet, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetMedia, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsMedia, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsMedia, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelContactData, type YoutubeChannelContactInput, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchShortsData, type YoutubeSearchShortsInput, type YoutubeSearchShortsShort, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptFullData, type YoutubeVideoTranscriptFullInput, type YoutubeVideoTranscriptFullSegment, type YoutubeVideoTranscriptInput, type YoutubeVideoTranscriptSegment, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };
47573
+ export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, CapterraNamespace, type CapterraReviewsAlternativesConsidered, type CapterraReviewsData, type CapterraReviewsInput, type CapterraReviewsItem, type CapterraReviewsSwitchedFrom, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, ChatgptNamespace, type ChatgptSearchAd, type ChatgptSearchCitation, type ChatgptSearchData, type ChatgptSearchEntitie, type ChatgptSearchInput, type ChatgptSearchPlace, type ChatgptSearchSearchResult, type ChatgptSearchShoppingCard, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3HeadcountTimeserie, type CompanyEnrichmentCrustdataV3Input, type CompanyEnrichmentCrustdataV3SicCode, type CompanyEnrichmentLushaData, type CompanyEnrichmentLushaInput, type CompanyEnrichmentLushaNaicsCode, type CompanyEnrichmentLushaOffice, type CompanyEnrichmentLushaSicCode, CompanyEnrichmentNamespace, type CompanyEnrichmentPeopledatalabsData, type CompanyEnrichmentPeopledatalabsInput, type CompanyEnrichmentPeopledatalabsNaicsCode, type CompanyEnrichmentPeopledatalabsSicCode, type CompanyEnrichmentProspeoData, type CompanyEnrichmentProspeoEvent, type CompanyEnrichmentProspeoInput, CompanyNamespace, type CompanyResearchData, type CompanyResearchInput, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkDiversityInvestment, type CompanySearchAiArkFundingRound, type CompanySearchAiArkInput, type CompanySearchAiArkLocation, type CompanySearchAiArkSpotlight, type CompanySearchAiArkTechnologie, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, type CompanySearchFullenrichCompanie, type CompanySearchFullenrichCompanyId, type CompanySearchFullenrichData, type CompanySearchFullenrichDomain, type CompanySearchFullenrichFoundedYear, type CompanySearchFullenrichHeadcount, type CompanySearchFullenrichHeadquartersLocation, type CompanySearchFullenrichIndustrie, type CompanySearchFullenrichInput, type CompanySearchFullenrichKeyword, type CompanySearchFullenrichLinkedinUrl, type CompanySearchFullenrichName, type CompanySearchFullenrichOffice, type CompanySearchFullenrichSpecialtie, type CompanySearchFullenrichType, CompanySearchNamespace, type CompanySearchPeopledatalabsCompanie, type CompanySearchPeopledatalabsData, type CompanySearchPeopledatalabsInput, type CompanySearchPeopledatalabsNaicsCode, type CompanySearchPeopledatalabsSicCode, type CompanySearchProspeoCompanie, type CompanySearchProspeoData, type CompanySearchProspeoEvent, type CompanySearchProspeoInput, type CompanySearchQuickenrichCompanie, type CompanySearchQuickenrichData, type CompanySearchQuickenrichInput, type CompanySearchTheirstackCompanie, type CompanySearchTheirstackData, type CompanySearchTheirstackInput, type CompanySearchTheirstackTechnologiesFound, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryExecution, type DiscoveryExecutionMode, type DiscoveryLane, type DiscoveryLatency, type DiscoveryPricing, type DiscoverySource, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbayProductData, type EbayProductFullData, type EbayProductFullInput, type EbayProductFullItem, type EbayProductFullSpecification, type EbayProductInput, type EbayProductItem, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingHunterCountData, type EmailFindingHunterCountInput, type EmailFindingHunterDomainData, type EmailFindingHunterDomainEmail, type EmailFindingHunterDomainInput, type EmailFindingHunterDomainSource, type EmailFindingIcypeasData, type EmailFindingIcypeasEmail, type EmailFindingIcypeasInput, EmailFindingNamespace, type EmailFindingQuickenrichData, type EmailFindingQuickenrichInput, type EmailFindingZerobounceData, type EmailFindingZerobounceDomainData, type EmailFindingZerobounceDomainInput, type EmailFindingZerobounceDomainOtherFormat, type EmailFindingZerobounceInput, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, type EmailVerificationZerobounceActivityData, type EmailVerificationZerobounceActivityInput, type EmailVerificationZerobounceData, type EmailVerificationZerobounceInput, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsFullCreative, type FacebookAdDetailsFullData, type FacebookAdDetailsFullImage, type FacebookAdDetailsFullInput, type FacebookAdDetailsFullVideo, type FacebookAdDetailsInput, type FacebookAdDetailsMedia, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookAdsSearchMedia, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookCompanyAdsMedia, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsMedia, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, G2Namespace, type G2ReviewsData, type G2ReviewsInput, type G2ReviewsItem, GeminiNamespace, type GeminiSearchCitation, type GeminiSearchData, type GeminiSearchInput, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAiModeCitation, type GoogleAiModeData, type GoogleAiModeInput, type GoogleAiOverviewCitation, type GoogleAiOverviewData, type GoogleAiOverviewInput, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearch100Data, type GoogleSearch100Input, type GoogleSearch100Result, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHashtagRecentPostsData, type InstagramHashtagRecentPostsInput, type InstagramHashtagRecentPostsMedia, type InstagramHashtagRecentPostsPost, type InstagramHashtagTopPostsData, type InstagramHashtagTopPostsInput, type InstagramHashtagTopPostsMedia, type InstagramHashtagTopPostsPost, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramLocationPostsCoauthor, type InstagramLocationPostsData, type InstagramLocationPostsInput, type InstagramLocationPostsPost, type InstagramLocationPostsTaggedUser, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramPostLikersData, type InstagramPostLikersInput, type InstagramPostLikersLiker, type InstagramProfileBioLink, type InstagramProfileContactData, type InstagramProfileContactInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchLocationsData, type InstagramSearchLocationsInput, type InstagramSearchLocationsLocation, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramSimilarProfilesData, type InstagramSimilarProfilesInput, type InstagramSimilarProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsMedia, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsMedia, type InstagramUserReelsReel, type InstagramUserRepostsCoauthor, type InstagramUserRepostsData, type InstagramUserRepostsInput, type InstagramUserRepostsPost, type InstagramUserRepostsTaggedUser, InsufficientBalanceError, JobSearchNamespace, type JobSearchTheirstackData, type JobSearchTheirstackInput, type JobSearchTheirstackJob, type JobSearchTheirstackLocation, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinArticleData, type LinkedinArticleInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePostsFullBreakdown, type LinkedinProfilePostsFullContentAnnotation, type LinkedinProfilePostsFullData, type LinkedinProfilePostsFullImage, type LinkedinProfilePostsFullInput, type LinkedinProfilePostsFullItem, type LinkedinProfilePostsFullRepostImage, type LinkedinProfilePostsThinData, type LinkedinProfilePostsThinImage, type LinkedinProfilePostsThinInput, type LinkedinProfilePostsThinItem, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsFullBreakdown, type LinkedinSearchPostsFullData, type LinkedinSearchPostsFullInput, type LinkedinSearchPostsFullPollOption, type LinkedinSearchPostsFullPost, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, type MobilePhoneAiArkData, type MobilePhoneAiArkInput, type MobilePhoneLeadmagicData, type MobilePhoneLeadmagicInput, MobilePhoneNamespace, type NaverBlogSearchData, type NaverBlogSearchInput, type NaverBlogSearchItem, NaverNamespace, type NextdoorBusinessData, type NextdoorBusinessInput, type NextdoorBusinessItem, NextdoorNamespace, type NextdoorSearchData, type NextdoorSearchInput, type NextdoorSearchItem, NotFoundError, type Output, type Paginator, type PeopleSearchAiArkCompanyAcquisition, type PeopleSearchAiArkCompanyLocation, type PeopleSearchAiArkCompanyTechnologie, type PeopleSearchAiArkData, type PeopleSearchAiArkEducation, type PeopleSearchAiArkExperience, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchAiArkPosition, type PeopleSearchAiArkSupportedLocale, type PeopleSearchCrustdataV3AllEmployer, type PeopleSearchCrustdataV3Certification, type PeopleSearchCrustdataV3CurrentEmployer, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3PastEmployer, type PeopleSearchCrustdataV3Profile, type PeopleSearchFullenrichCurrentCompanyDomain, type PeopleSearchFullenrichCurrentCompanyFoundedYear, type PeopleSearchFullenrichCurrentCompanyHeadcount, type PeopleSearchFullenrichCurrentCompanyHeadquarter, type PeopleSearchFullenrichCurrentCompanyId, type PeopleSearchFullenrichCurrentCompanyIndustrie, type PeopleSearchFullenrichCurrentCompanyLinkedinUrl, type PeopleSearchFullenrichCurrentCompanyName, type PeopleSearchFullenrichCurrentCompanySpecialtie, type PeopleSearchFullenrichCurrentCompanyType, type PeopleSearchFullenrichCurrentPositionJobFunction, type PeopleSearchFullenrichCurrentPositionSeniorityLevel, type PeopleSearchFullenrichCurrentPositionSubFunction, type PeopleSearchFullenrichCurrentPositionTitle, type PeopleSearchFullenrichCurrentPositionYearsIn, type PeopleSearchFullenrichData, type PeopleSearchFullenrichEducation, type PeopleSearchFullenrichInput, type PeopleSearchFullenrichLanguage, type PeopleSearchFullenrichOffice, type PeopleSearchFullenrichPastCompanyDomain, type PeopleSearchFullenrichPastCompanyName, type PeopleSearchFullenrichPastPositionTitle, type PeopleSearchFullenrichPeople, type PeopleSearchFullenrichPersonId, type PeopleSearchFullenrichPersonLanguage, type PeopleSearchFullenrichPersonLinkedinUrl, type PeopleSearchFullenrichPersonLocation, type PeopleSearchFullenrichPersonName, type PeopleSearchFullenrichPersonSkill, type PeopleSearchLushaData, type PeopleSearchLushaInput, type PeopleSearchLushaPeople, PeopleSearchNamespace, type PeopleSearchPeopledatalabsData, type PeopleSearchPeopledatalabsEducation, type PeopleSearchPeopledatalabsEmail, type PeopleSearchPeopledatalabsExperience, type PeopleSearchPeopledatalabsInput, type PeopleSearchPeopledatalabsPeople, type PeopleSearchPeopledatalabsProfile, type PeopleSearchProspeoData, type PeopleSearchProspeoEvent, type PeopleSearchProspeoInput, type PeopleSearchProspeoJobHistory, type PeopleSearchProspeoPeople, type PeopleSearchQuickenrichCompanyData, type PeopleSearchQuickenrichCompanyInput, type PeopleSearchQuickenrichCompanyPeople, type PeopleSearchQuickenrichData, type PeopleSearchQuickenrichInput, type PeopleSearchQuickenrichPeople, PerplexityNamespace, type PerplexitySearchCitation, type PerplexitySearchData, type PerplexitySearchInput, type PersonEnrichmentBettercontactData, type PersonEnrichmentBettercontactInput, type PersonEnrichmentFullenrichBulkContact, type PersonEnrichmentFullenrichBulkData, type PersonEnrichmentFullenrichBulkEducation, type PersonEnrichmentFullenrichBulkEmploymentHistory, type PersonEnrichmentFullenrichBulkInput, type PersonEnrichmentFullenrichBulkLanguage, type PersonEnrichmentFullenrichBulkOffice, type PersonEnrichmentFullenrichBulkPersonalEmail, type PersonEnrichmentFullenrichBulkWorkEmail, type PersonEnrichmentFullenrichReverseEmailContact, type PersonEnrichmentFullenrichReverseEmailData, type PersonEnrichmentFullenrichReverseEmailEducation, type PersonEnrichmentFullenrichReverseEmailEmploymentHistory, type PersonEnrichmentFullenrichReverseEmailInput, type PersonEnrichmentFullenrichReverseEmailLanguage, type PersonEnrichmentFullenrichReverseEmailOffice, type PersonEnrichmentLushaData, type PersonEnrichmentLushaEmail, type PersonEnrichmentLushaInput, type PersonEnrichmentLushaNaicsCode, type PersonEnrichmentLushaPhone, type PersonEnrichmentLushaSicCode, PersonEnrichmentNamespace, type PersonEnrichmentPeopledatalabsData, type PersonEnrichmentPeopledatalabsEducation, type PersonEnrichmentPeopledatalabsEmail, type PersonEnrichmentPeopledatalabsExperience, type PersonEnrichmentPeopledatalabsInput, type PersonEnrichmentPeopledatalabsProfile, type PersonEnrichmentPeopledatalabsStreetAddresse, type PersonEnrichmentProspeoData, type PersonEnrichmentProspeoEvent, type PersonEnrichmentProspeoInput, type PersonEnrichmentProspeoJobHistory, type PersonEnrichmentQuickenrichData, type PersonEnrichmentQuickenrichInput, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostCommentsMedia, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchMedia, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsMedia, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, RequestPendingError, type RequestSnapshot, type RequestStatus, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoDomainTechnologiesData, type SeoDomainTechnologiesInput, type SeoDomainsByTechnologyData, type SeoDomainsByTechnologyDomain, type SeoDomainsByTechnologyInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, type StartOptions, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, TechnographicsNamespace, type TechnographicsTheirstackData, type TechnographicsTheirstackInput, type TechnographicsTheirstackTechnologie, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAdTransparencySearchAd, type TiktokAdTransparencySearchData, type TiktokAdTransparencySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokPhotosData, type TiktokPhotosImage, type TiktokPhotosInput, type TiktokProfileContactData, type TiktokProfileContactEmail, type TiktokProfileContactInput, type TiktokProfileContactSocialLink, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, type TiktokShopCategoriesCategorie, type TiktokShopCategoriesChildren, type TiktokShopCategoriesData, type TiktokShopCategoriesInput, type TiktokShopCategoryProductsData, type TiktokShopCategoryProductsInput, type TiktokShopCategoryProductsItem, type TiktokShopCreatorAudienceAge, type TiktokShopCreatorAudienceGender, type TiktokShopCreatorAudienceLocation, type TiktokShopCreatorCategorie, type TiktokShopCreatorData, type TiktokShopCreatorInput, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductFullData, type TiktokShopProductFullInput, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopSearchSuggestionsData, type TiktokShopSearchSuggestionsInput, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTopAdsSearchAd, type TiktokTopAdsSearchData, type TiktokTopAdsSearchInput, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokTrendingHashtagsData, type TiktokTrendingHashtagsInput, type TiktokTrendingHashtagsItem, type TiktokTrendingHashtagsPopularity, type TiktokTrendingHashtagsTopCreator, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoDownloadData, type TiktokVideoDownloadInput, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptFullData, type TiktokVideoTranscriptFullInput, type TiktokVideoTranscriptFullSegment, type TiktokVideoTranscriptFullWord, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterRepliesMedia, type TwitterSearchCommunitiesCommunitie, type TwitterSearchCommunitiesData, type TwitterSearchCommunitiesInput, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterSearchMedia, type TwitterSearchUsersData, type TwitterSearchUsersInput, type TwitterSearchUsersUser, type TwitterThreadData, type TwitterThreadInput, type TwitterThreadMedia, type TwitterThreadTweet, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetMedia, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsMedia, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsMedia, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelContactData, type YoutubeChannelContactInput, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchShortsData, type YoutubeSearchShortsInput, type YoutubeSearchShortsShort, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptFullData, type YoutubeVideoTranscriptFullInput, type YoutubeVideoTranscriptFullSegment, type YoutubeVideoTranscriptInput, type YoutubeVideoTranscriptSegment, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };