@getanyapi/sdk 0.9.5 → 0.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +94 -90
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +134 -91
- package/dist/index.d.ts +134 -91
- package/dist/index.js +94 -90
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -788,8 +788,12 @@ var AnyAPI = class {
|
|
|
788
788
|
};
|
|
789
789
|
|
|
790
790
|
// src/core/types.ts
|
|
791
|
+
var OUTPUT_NOT_RETAINED = "the run output was not retained: this response is an idempotent replay whose stored payload has expired or was too large to store, so only the run metadata came back. Re-run the request without the idempotency key (or with a fresh one) to fetch the data again.";
|
|
791
792
|
function unwrap(result) {
|
|
792
793
|
const output = result.output;
|
|
794
|
+
if (output === null || output === void 0) {
|
|
795
|
+
throw new AnyAPIError(OUTPUT_NOT_RETAINED, 200);
|
|
796
|
+
}
|
|
793
797
|
if (output !== null && typeof output === "object" && "found" in output) {
|
|
794
798
|
const env = output;
|
|
795
799
|
if (env.found) {
|
|
@@ -1228,7 +1232,7 @@ var BlueskyNamespace = class {
|
|
|
1228
1232
|
/**
|
|
1229
1233
|
* Bluesky User Posts
|
|
1230
1234
|
*
|
|
1231
|
-
* List a Bluesky account's recent posts (text, author handle, like, reply, and repost counts) by handle as clean JSON
|
|
1235
|
+
* List a Bluesky account's recent posts (text, author handle, like, reply, and repost counts) by handle as clean JSON.
|
|
1232
1236
|
*
|
|
1233
1237
|
* Price: $0.002 per request.
|
|
1234
1238
|
*
|
|
@@ -1500,7 +1504,7 @@ var FacebookNamespace = class {
|
|
|
1500
1504
|
/**
|
|
1501
1505
|
* Facebook Ad Search
|
|
1502
1506
|
*
|
|
1503
|
-
* Search the Meta Ad Library by keyword and get matching ads (advertiser, creative text, CTA, platforms, and run dates) with cursor pagination
|
|
1507
|
+
* Search the Meta Ad Library by keyword and get matching ads (advertiser, creative text, CTA, platforms, and run dates) with cursor pagination.
|
|
1504
1508
|
*
|
|
1505
1509
|
* Price: $0.002 per request.
|
|
1506
1510
|
*
|
|
@@ -1529,7 +1533,7 @@ var FacebookNamespace = class {
|
|
|
1529
1533
|
/**
|
|
1530
1534
|
* Facebook Comment Replies
|
|
1531
1535
|
*
|
|
1532
|
-
* List the replies to a Facebook post comment (text, author, reactions, and timestamps) as normalized JSON
|
|
1536
|
+
* List the replies to a Facebook post comment (text, author, reactions, and timestamps) as normalized JSON.
|
|
1533
1537
|
*
|
|
1534
1538
|
* Price: $0.002 per request.
|
|
1535
1539
|
*
|
|
@@ -1587,7 +1591,7 @@ var FacebookNamespace = class {
|
|
|
1587
1591
|
/**
|
|
1588
1592
|
* Facebook Event Details
|
|
1589
1593
|
*
|
|
1590
|
-
* Fetch full details for a single Facebook event by ID or URL (name, schedule, venue, hosts, and attendance) as normalized JSON
|
|
1594
|
+
* Fetch full details for a single Facebook event by ID or URL (name, schedule, venue, hosts, and attendance) as normalized JSON.
|
|
1591
1595
|
*
|
|
1592
1596
|
* Price: $0.002 per request.
|
|
1593
1597
|
*
|
|
@@ -1600,7 +1604,7 @@ var FacebookNamespace = class {
|
|
|
1600
1604
|
/**
|
|
1601
1605
|
* Facebook Events
|
|
1602
1606
|
*
|
|
1603
|
-
* List public Facebook events for a city or place by its events-page URL (event name, date, venue, and attendance) as normalized JSON
|
|
1607
|
+
* List public Facebook events for a city or place by its events-page URL (event name, date, venue, and attendance) as normalized JSON.
|
|
1604
1608
|
*
|
|
1605
1609
|
* Price: $0.002 per request.
|
|
1606
1610
|
*
|
|
@@ -1629,7 +1633,7 @@ var FacebookNamespace = class {
|
|
|
1629
1633
|
/**
|
|
1630
1634
|
* Facebook Events Search
|
|
1631
1635
|
*
|
|
1632
|
-
* Search public Facebook events by keyword and get structured event records (name, schedule, venue, pricing, and attendance) as normalized JSON
|
|
1636
|
+
* Search public Facebook events by keyword and get structured event records (name, schedule, venue, pricing, and attendance) as normalized JSON.
|
|
1633
1637
|
*
|
|
1634
1638
|
* Price: $0.002 per request.
|
|
1635
1639
|
*
|
|
@@ -1729,7 +1733,7 @@ var FacebookNamespace = class {
|
|
|
1729
1733
|
/**
|
|
1730
1734
|
* Facebook Marketplace Item
|
|
1731
1735
|
*
|
|
1732
|
-
* Fetch full details for a single Facebook Marketplace listing by ID or URL (title, price, location, photos, and attributes) as normalized JSON
|
|
1736
|
+
* Fetch full details for a single Facebook Marketplace listing by ID or URL (title, price, location, photos, and attributes) as normalized JSON.
|
|
1733
1737
|
*
|
|
1734
1738
|
* Price: $0.002 per request.
|
|
1735
1739
|
*
|
|
@@ -1742,7 +1746,7 @@ var FacebookNamespace = class {
|
|
|
1742
1746
|
/**
|
|
1743
1747
|
* Facebook Marketplace Location Search
|
|
1744
1748
|
*
|
|
1745
|
-
* Resolve a place name to Facebook Marketplace locations with coordinates and metadata as normalized JSON
|
|
1749
|
+
* Resolve a place name to Facebook Marketplace locations with coordinates and metadata as normalized JSON.
|
|
1746
1750
|
*
|
|
1747
1751
|
* Price: $0.002 per request.
|
|
1748
1752
|
*
|
|
@@ -1772,7 +1776,7 @@ var FacebookNamespace = class {
|
|
|
1772
1776
|
/**
|
|
1773
1777
|
* Facebook Page Photos
|
|
1774
1778
|
*
|
|
1775
|
-
* Fetch recent photos posted by any public Facebook page or profile (image URLs, captions, and dimensions) as normalized JSON
|
|
1779
|
+
* Fetch recent photos posted by any public Facebook page or profile (image URLs, captions, and dimensions) as normalized JSON.
|
|
1776
1780
|
*
|
|
1777
1781
|
* Price: $0.002 per request.
|
|
1778
1782
|
*
|
|
@@ -1801,7 +1805,7 @@ var FacebookNamespace = class {
|
|
|
1801
1805
|
/**
|
|
1802
1806
|
* Facebook Post
|
|
1803
1807
|
*
|
|
1804
|
-
* Fetch a single Facebook post by URL with its text and engagement counts (likes, comments, shares, views)
|
|
1808
|
+
* Fetch a single Facebook post by URL with its text and engagement counts (likes, comments, shares, views).
|
|
1805
1809
|
*
|
|
1806
1810
|
* Price: $0.002 per request.
|
|
1807
1811
|
*
|
|
@@ -1814,7 +1818,7 @@ var FacebookNamespace = class {
|
|
|
1814
1818
|
/**
|
|
1815
1819
|
* Facebook Post Comments
|
|
1816
1820
|
*
|
|
1817
|
-
* List the comments on a Facebook post by URL with cursor pagination (text, author, reactions, reply count)
|
|
1821
|
+
* List the comments on a Facebook post by URL with cursor pagination (text, author, reactions, reply count).
|
|
1818
1822
|
*
|
|
1819
1823
|
* Price: $0.002 per request.
|
|
1820
1824
|
*
|
|
@@ -1843,7 +1847,7 @@ var FacebookNamespace = class {
|
|
|
1843
1847
|
/**
|
|
1844
1848
|
* Facebook Post Transcript
|
|
1845
1849
|
*
|
|
1846
|
-
* Get the spoken-word transcript of any public Facebook video post by URL as normalized JSON
|
|
1850
|
+
* Get the spoken-word transcript of any public Facebook video post by URL as normalized JSON.
|
|
1847
1851
|
*
|
|
1848
1852
|
* Price: $0.002 per request.
|
|
1849
1853
|
*
|
|
@@ -1856,7 +1860,7 @@ var FacebookNamespace = class {
|
|
|
1856
1860
|
/**
|
|
1857
1861
|
* Facebook Profile
|
|
1858
1862
|
*
|
|
1859
|
-
* Fetch a Facebook page's public profile (likes, followers, category, about) by URL or handle
|
|
1863
|
+
* Fetch a Facebook page's public profile (likes, followers, category, about) by URL or handle.
|
|
1860
1864
|
*
|
|
1861
1865
|
* Price: $0.002 per request.
|
|
1862
1866
|
*
|
|
@@ -1869,7 +1873,7 @@ var FacebookNamespace = class {
|
|
|
1869
1873
|
/**
|
|
1870
1874
|
* Facebook Page Events
|
|
1871
1875
|
*
|
|
1872
|
-
* List upcoming and past events hosted by any public Facebook page by URL (name, schedule, venue, and host) as normalized JSON
|
|
1876
|
+
* List upcoming and past events hosted by any public Facebook page by URL (name, schedule, venue, and host) as normalized JSON.
|
|
1873
1877
|
*
|
|
1874
1878
|
* Price: $0.002 per request.
|
|
1875
1879
|
*
|
|
@@ -1898,7 +1902,7 @@ var FacebookNamespace = class {
|
|
|
1898
1902
|
/**
|
|
1899
1903
|
* Facebook Profile Posts
|
|
1900
1904
|
*
|
|
1901
|
-
* List a Facebook page's recent posts by URL or page id with cursor pagination (text, author, permalink)
|
|
1905
|
+
* List a Facebook page's recent posts by URL or page id with cursor pagination (text, author, permalink).
|
|
1902
1906
|
*
|
|
1903
1907
|
* Price: $0.002 per request.
|
|
1904
1908
|
*
|
|
@@ -1911,7 +1915,7 @@ var FacebookNamespace = class {
|
|
|
1911
1915
|
/**
|
|
1912
1916
|
* Facebook Profile Reels
|
|
1913
1917
|
*
|
|
1914
|
-
* List a Facebook page's reels by URL with cursor pagination (caption, view count, permalink, thumbnail)
|
|
1918
|
+
* List a Facebook page's reels by URL with cursor pagination (caption, view count, permalink, thumbnail).
|
|
1915
1919
|
*
|
|
1916
1920
|
* Price: $0.002 per request.
|
|
1917
1921
|
*
|
|
@@ -1937,7 +1941,7 @@ var FacebookNamespace = class {
|
|
|
1937
1941
|
/**
|
|
1938
1942
|
* Facebook Page Search
|
|
1939
1943
|
*
|
|
1940
|
-
* Search Facebook Pages by keyword, optionally narrowed to a location, and get structured page profiles (name, category, followers, contact details)
|
|
1944
|
+
* Search Facebook Pages by keyword, optionally narrowed to a location, and get structured page profiles (name, category, followers, contact details).
|
|
1941
1945
|
*
|
|
1942
1946
|
* Price: $0.001 per request plus $0.011 per result (maximum $0.111).
|
|
1943
1947
|
*
|
|
@@ -1992,7 +1996,7 @@ var GithubNamespace = class {
|
|
|
1992
1996
|
/**
|
|
1993
1997
|
* GitHub Repository
|
|
1994
1998
|
*
|
|
1995
|
-
* Fetch a GitHub repository's metadata by URL (stars, forks, language, topics, license, and timestamps)
|
|
1999
|
+
* Fetch a GitHub repository's metadata by URL (stars, forks, language, topics, license, and timestamps).
|
|
1996
2000
|
*
|
|
1997
2001
|
* Price: $0.002 per request.
|
|
1998
2002
|
*
|
|
@@ -2018,7 +2022,7 @@ var GithubNamespace = class {
|
|
|
2018
2022
|
/**
|
|
2019
2023
|
* GitHub Trending Repositories
|
|
2020
2024
|
*
|
|
2021
|
-
* List GitHub Trending repositories (rank, stars, stars gained today, language, and description), filterable by language and time window
|
|
2025
|
+
* List GitHub Trending repositories (rank, stars, stars gained today, language, and description), filterable by language and time window.
|
|
2022
2026
|
*
|
|
2023
2027
|
* Price: $0.002 per request.
|
|
2024
2028
|
*
|
|
@@ -2031,7 +2035,7 @@ var GithubNamespace = class {
|
|
|
2031
2035
|
/**
|
|
2032
2036
|
* GitHub User
|
|
2033
2037
|
*
|
|
2034
|
-
* Fetch a GitHub user's public profile by handle (name, bio, company, location, followers, and repo counts)
|
|
2038
|
+
* Fetch a GitHub user's public profile by handle (name, bio, company, location, followers, and repo counts).
|
|
2035
2039
|
*
|
|
2036
2040
|
* Price: $0.002 per request.
|
|
2037
2041
|
*
|
|
@@ -2073,7 +2077,7 @@ var GithubNamespace = class {
|
|
|
2073
2077
|
/**
|
|
2074
2078
|
* GitHub User Contributions
|
|
2075
2079
|
*
|
|
2076
|
-
* Fetch a GitHub user's contribution graph for a year (total contributions plus per-day counts and heatmap intensity)
|
|
2080
|
+
* Fetch a GitHub user's contribution graph for a year (total contributions plus per-day counts and heatmap intensity).
|
|
2077
2081
|
*
|
|
2078
2082
|
* Price: $0.002 per request.
|
|
2079
2083
|
*
|
|
@@ -2173,7 +2177,7 @@ var GithubNamespace = class {
|
|
|
2173
2177
|
/**
|
|
2174
2178
|
* GitHub User Repositories
|
|
2175
2179
|
*
|
|
2176
|
-
* List a GitHub user's public repositories (name, description, language, stars, and forks) with sorting and cursor pagination
|
|
2180
|
+
* List a GitHub user's public repositories (name, description, language, stars, and forks) with sorting and cursor pagination.
|
|
2177
2181
|
*
|
|
2178
2182
|
* Price: $0.002 per request.
|
|
2179
2183
|
*
|
|
@@ -2526,7 +2530,7 @@ var InstagramNamespace = class {
|
|
|
2526
2530
|
/**
|
|
2527
2531
|
* Instagram Reels by Audio
|
|
2528
2532
|
*
|
|
2529
|
-
* List Instagram reels that use a given audio track by audio id
|
|
2533
|
+
* List Instagram reels that use a given audio track by audio id.
|
|
2530
2534
|
*
|
|
2531
2535
|
* Price: $0.002 per request.
|
|
2532
2536
|
*
|
|
@@ -2555,7 +2559,7 @@ var InstagramNamespace = class {
|
|
|
2555
2559
|
/**
|
|
2556
2560
|
* Instagram Basic Profile
|
|
2557
2561
|
*
|
|
2558
|
-
* Fetch an Instagram account's core public profile fields (followers, posts, bio, verification) by user id
|
|
2562
|
+
* Fetch an Instagram account's core public profile fields (followers, posts, bio, verification) by user id.
|
|
2559
2563
|
*
|
|
2560
2564
|
* Price: $0.002 per request.
|
|
2561
2565
|
*
|
|
@@ -2568,7 +2572,7 @@ var InstagramNamespace = class {
|
|
|
2568
2572
|
/**
|
|
2569
2573
|
* Instagram Profile Embed
|
|
2570
2574
|
*
|
|
2571
|
-
* Fetch the public embed HTML for an Instagram profile by handle
|
|
2575
|
+
* Fetch the public embed HTML for an Instagram profile by handle.
|
|
2572
2576
|
*
|
|
2573
2577
|
* Price: $0.002 per request.
|
|
2574
2578
|
*
|
|
@@ -2639,7 +2643,7 @@ var InstagramNamespace = class {
|
|
|
2639
2643
|
/**
|
|
2640
2644
|
* Instagram Hashtag Analytics
|
|
2641
2645
|
*
|
|
2642
|
-
* Get analytics for any Instagram hashtag (total post count, related hashtags, and usage signals)
|
|
2646
|
+
* Get analytics for any Instagram hashtag (total post count, related hashtags, and usage signals).
|
|
2643
2647
|
*
|
|
2644
2648
|
* Price: $0.001 per request plus $0.0017 per result (maximum $0.035).
|
|
2645
2649
|
*
|
|
@@ -2652,7 +2656,7 @@ var InstagramNamespace = class {
|
|
|
2652
2656
|
/**
|
|
2653
2657
|
* Instagram Highlight Detail
|
|
2654
2658
|
*
|
|
2655
|
-
* Fetch the details and media items of a single Instagram story highlight by id
|
|
2659
|
+
* Fetch the details and media items of a single Instagram story highlight by id.
|
|
2656
2660
|
*
|
|
2657
2661
|
* Price: $0.002 per request.
|
|
2658
2662
|
*
|
|
@@ -2665,7 +2669,7 @@ var InstagramNamespace = class {
|
|
|
2665
2669
|
/**
|
|
2666
2670
|
* Instagram Media Transcript
|
|
2667
2671
|
*
|
|
2668
|
-
* Get the spoken-audio transcript text for an Instagram post or reel by URL
|
|
2672
|
+
* Get the spoken-audio transcript text for an Instagram post or reel by URL.
|
|
2669
2673
|
*
|
|
2670
2674
|
* Price: $0.002 per request.
|
|
2671
2675
|
*
|
|
@@ -2678,7 +2682,7 @@ var InstagramNamespace = class {
|
|
|
2678
2682
|
/**
|
|
2679
2683
|
* Instagram Post
|
|
2680
2684
|
*
|
|
2681
|
-
* Fetch a single Instagram post or reel by URL (media URLs, like count, owner, type) as normalized JSON
|
|
2685
|
+
* Fetch a single Instagram post or reel by URL (media URLs, like count, owner, type) as normalized JSON.
|
|
2682
2686
|
*
|
|
2683
2687
|
* Price: $0.002 per request.
|
|
2684
2688
|
*
|
|
@@ -2691,7 +2695,7 @@ var InstagramNamespace = class {
|
|
|
2691
2695
|
/**
|
|
2692
2696
|
* Instagram Post Comments
|
|
2693
2697
|
*
|
|
2694
|
-
* List the comments on an Instagram post or reel by URL with cursor pagination (text, author, likes)
|
|
2698
|
+
* List the comments on an Instagram post or reel by URL with cursor pagination (text, author, likes).
|
|
2695
2699
|
*
|
|
2696
2700
|
* Price: $0.002 per request.
|
|
2697
2701
|
*
|
|
@@ -2704,7 +2708,7 @@ var InstagramNamespace = class {
|
|
|
2704
2708
|
/**
|
|
2705
2709
|
* Instagram Profile
|
|
2706
2710
|
*
|
|
2707
|
-
* Fetch an Instagram account's public profile (followers, posts, bio, verification) by handle
|
|
2711
|
+
* Fetch an Instagram account's public profile (followers, posts, bio, verification) by handle.
|
|
2708
2712
|
*
|
|
2709
2713
|
* Price: $0.002 per request.
|
|
2710
2714
|
*
|
|
@@ -2730,7 +2734,7 @@ var InstagramNamespace = class {
|
|
|
2730
2734
|
/**
|
|
2731
2735
|
* Instagram Reels Search
|
|
2732
2736
|
*
|
|
2733
|
-
* Search Instagram Reels by keyword and get matching reels (caption, views, likes, creator, and duration)
|
|
2737
|
+
* Search Instagram Reels by keyword and get matching reels (caption, views, likes, creator, and duration). Paging tops out around 110 reels per query (11 pages of 10).
|
|
2734
2738
|
*
|
|
2735
2739
|
* Price: $0.002 per request.
|
|
2736
2740
|
*
|
|
@@ -2756,7 +2760,7 @@ var InstagramNamespace = class {
|
|
|
2756
2760
|
/**
|
|
2757
2761
|
* Instagram Hashtag Search
|
|
2758
2762
|
*
|
|
2759
|
-
*
|
|
2763
|
+
* Search Instagram posts under a hashtag (caption, type, media URL). Results are relevance-ranked by Instagram, not date-ordered, so a page can mix recent and older posts.
|
|
2760
2764
|
*
|
|
2761
2765
|
* Price: $0.002 per request.
|
|
2762
2766
|
*
|
|
@@ -2769,7 +2773,7 @@ var InstagramNamespace = class {
|
|
|
2769
2773
|
/**
|
|
2770
2774
|
* Instagram Profile Search
|
|
2771
2775
|
*
|
|
2772
|
-
* Search public Instagram profiles by a bio or caption keyword
|
|
2776
|
+
* Search public Instagram profiles by a bio or caption keyword.
|
|
2773
2777
|
*
|
|
2774
2778
|
* Price: $0.002 per request.
|
|
2775
2779
|
*
|
|
@@ -2824,7 +2828,7 @@ var InstagramNamespace = class {
|
|
|
2824
2828
|
/**
|
|
2825
2829
|
* Instagram Trending Reels
|
|
2826
2830
|
*
|
|
2827
|
-
* List currently trending Instagram reels
|
|
2831
|
+
* List currently trending Instagram reels.
|
|
2828
2832
|
*
|
|
2829
2833
|
* Price: $0.002 per request.
|
|
2830
2834
|
*
|
|
@@ -2837,7 +2841,7 @@ var InstagramNamespace = class {
|
|
|
2837
2841
|
/**
|
|
2838
2842
|
* Instagram User Highlights
|
|
2839
2843
|
*
|
|
2840
|
-
* List an Instagram account's story highlight reels by handle
|
|
2844
|
+
* List an Instagram account's story highlight reels by handle.
|
|
2841
2845
|
*
|
|
2842
2846
|
* Price: $0.002 per request.
|
|
2843
2847
|
*
|
|
@@ -2850,7 +2854,7 @@ var InstagramNamespace = class {
|
|
|
2850
2854
|
/**
|
|
2851
2855
|
* Instagram User Posts
|
|
2852
2856
|
*
|
|
2853
|
-
* List an Instagram account's recent posts (likes, comments, captions) by handle with cursor pagination
|
|
2857
|
+
* List an Instagram account's recent posts (likes, comments, captions) by handle with cursor pagination.
|
|
2854
2858
|
*
|
|
2855
2859
|
* Price: $0.002 per request.
|
|
2856
2860
|
*
|
|
@@ -2879,7 +2883,7 @@ var InstagramNamespace = class {
|
|
|
2879
2883
|
/**
|
|
2880
2884
|
* Instagram User Reels
|
|
2881
2885
|
*
|
|
2882
|
-
* List an Instagram account's reels by handle with cursor pagination (caption, plays, likes, comments)
|
|
2886
|
+
* List an Instagram account's reels by handle with cursor pagination (caption, plays, likes, comments).
|
|
2883
2887
|
*
|
|
2884
2888
|
* Price: $0.002 per request.
|
|
2885
2889
|
*
|
|
@@ -3059,7 +3063,7 @@ var LinkedinNamespace = class {
|
|
|
3059
3063
|
/**
|
|
3060
3064
|
* LinkedIn Post
|
|
3061
3065
|
*
|
|
3062
|
-
* Fetch a single LinkedIn post or article by URL (title, text, author, like and comment counts, publish date)
|
|
3066
|
+
* Fetch a single LinkedIn post or article by URL (title, text, author, like and comment counts, publish date).
|
|
3063
3067
|
*
|
|
3064
3068
|
* Price: $0.001 per request.
|
|
3065
3069
|
*
|
|
@@ -3150,7 +3154,7 @@ var LinkedinNamespace = class {
|
|
|
3150
3154
|
/**
|
|
3151
3155
|
* LinkedIn Post Search
|
|
3152
3156
|
*
|
|
3153
|
-
* Search public LinkedIn posts by keyword (text, link, publish date)
|
|
3157
|
+
* Search public LinkedIn posts by keyword (text, link, publish date).
|
|
3154
3158
|
*
|
|
3155
3159
|
* Price: $0.002 per request.
|
|
3156
3160
|
*
|
|
@@ -3422,7 +3426,7 @@ var RedditNamespace = class {
|
|
|
3422
3426
|
/**
|
|
3423
3427
|
* Reddit Post Comments
|
|
3424
3428
|
*
|
|
3425
|
-
* List the top-level comments on a Reddit post by URL (author, body, score, timestamp)
|
|
3429
|
+
* List the top-level comments on a Reddit post by URL (author, body, score, timestamp).
|
|
3426
3430
|
*
|
|
3427
3431
|
* Price: $0.002 per request.
|
|
3428
3432
|
*
|
|
@@ -3435,7 +3439,7 @@ var RedditNamespace = class {
|
|
|
3435
3439
|
/**
|
|
3436
3440
|
* Reddit Post Transcript
|
|
3437
3441
|
*
|
|
3438
|
-
* Extract the spoken transcript from a Reddit video post by URL
|
|
3442
|
+
* Extract the spoken transcript from a Reddit video post by URL.
|
|
3439
3443
|
*
|
|
3440
3444
|
* Price: $0.002 per request.
|
|
3441
3445
|
*
|
|
@@ -3448,7 +3452,7 @@ var RedditNamespace = class {
|
|
|
3448
3452
|
/**
|
|
3449
3453
|
* Reddit Search
|
|
3450
3454
|
*
|
|
3451
|
-
* Search Reddit posts across all subreddits by query
|
|
3455
|
+
* Search Reddit posts across all subreddits by query.
|
|
3452
3456
|
*
|
|
3453
3457
|
* Price: $0.001 per request.
|
|
3454
3458
|
*
|
|
@@ -3477,7 +3481,7 @@ var RedditNamespace = class {
|
|
|
3477
3481
|
/**
|
|
3478
3482
|
* Reddit Subreddit Details
|
|
3479
3483
|
*
|
|
3480
|
-
* Fetch a subreddit's metadata (weekly active users, description, and category)
|
|
3484
|
+
* Fetch a subreddit's metadata (weekly active users, description, and category).
|
|
3481
3485
|
*
|
|
3482
3486
|
* Price: $0.001 per request.
|
|
3483
3487
|
*
|
|
@@ -3490,7 +3494,7 @@ var RedditNamespace = class {
|
|
|
3490
3494
|
/**
|
|
3491
3495
|
* Reddit Subreddit Posts
|
|
3492
3496
|
*
|
|
3493
|
-
* Fetch posts from a subreddit listing (hot, new, or top)
|
|
3497
|
+
* Fetch posts from a subreddit listing (hot, new, or top).
|
|
3494
3498
|
*
|
|
3495
3499
|
* Price: $0.002 per request.
|
|
3496
3500
|
*
|
|
@@ -3503,7 +3507,7 @@ var RedditNamespace = class {
|
|
|
3503
3507
|
/**
|
|
3504
3508
|
* Reddit Subreddit Search
|
|
3505
3509
|
*
|
|
3506
|
-
* Search posts within a single subreddit by query, sort, and timeframe
|
|
3510
|
+
* Search posts within a single subreddit by query, sort, and timeframe.
|
|
3507
3511
|
*
|
|
3508
3512
|
* Price: $0.002 per request.
|
|
3509
3513
|
*
|
|
@@ -4181,7 +4185,7 @@ var TiktokNamespace = class {
|
|
|
4181
4185
|
/**
|
|
4182
4186
|
* TikTok Ad Library Ad
|
|
4183
4187
|
*
|
|
4184
|
-
* Fetch full details for a single TikTok ad (brand, title, spend, CTR, objectives, landing page, and video info)
|
|
4188
|
+
* Fetch full details for a single TikTok ad (brand, title, spend, CTR, objectives, landing page, and video info).
|
|
4185
4189
|
*
|
|
4186
4190
|
* Price: $0.002 per request.
|
|
4187
4191
|
*
|
|
@@ -4194,7 +4198,7 @@ var TiktokNamespace = class {
|
|
|
4194
4198
|
/**
|
|
4195
4199
|
* TikTok Ad Library Search
|
|
4196
4200
|
*
|
|
4197
|
-
* Search TikTok's ad library by keyword (top ads with brand, title, spend, CTR, likes, and video info)
|
|
4201
|
+
* Search TikTok's ad library by keyword (top ads with brand, title, spend, CTR, likes, and video info).
|
|
4198
4202
|
*
|
|
4199
4203
|
* Price: $0.002 per request.
|
|
4200
4204
|
*
|
|
@@ -4223,7 +4227,7 @@ var TiktokNamespace = class {
|
|
|
4223
4227
|
/**
|
|
4224
4228
|
* TikTok Audience Demographics
|
|
4225
4229
|
*
|
|
4226
|
-
* Get the audience country breakdown (follower count and share per country) for a TikTok creator by handle
|
|
4230
|
+
* Get the audience country breakdown (follower count and share per country) for a TikTok creator by handle.
|
|
4227
4231
|
*
|
|
4228
4232
|
* Price: $0.01625 per request.
|
|
4229
4233
|
*
|
|
@@ -4236,7 +4240,7 @@ var TiktokNamespace = class {
|
|
|
4236
4240
|
/**
|
|
4237
4241
|
* TikTok Comment Replies
|
|
4238
4242
|
*
|
|
4239
|
-
* List the replies to a TikTok comment with cursor pagination (text, author, likes)
|
|
4243
|
+
* List the replies to a TikTok comment with cursor pagination (text, author, likes).
|
|
4240
4244
|
*
|
|
4241
4245
|
* Price: $0.002 per request.
|
|
4242
4246
|
*
|
|
@@ -4294,7 +4298,7 @@ var TiktokNamespace = class {
|
|
|
4294
4298
|
/**
|
|
4295
4299
|
* TikTok Following
|
|
4296
4300
|
*
|
|
4297
|
-
* List the accounts a TikTok user follows (handle, display name, follower count, bio) by username
|
|
4301
|
+
* List the accounts a TikTok user follows (handle, display name, follower count, bio) by username.
|
|
4298
4302
|
*
|
|
4299
4303
|
* Price: $0.002 per request.
|
|
4300
4304
|
*
|
|
@@ -4307,7 +4311,7 @@ var TiktokNamespace = class {
|
|
|
4307
4311
|
/**
|
|
4308
4312
|
* TikTok Hashtag Videos
|
|
4309
4313
|
*
|
|
4310
|
-
* List recent TikTok videos for a hashtag (creator, caption, views, likes, shares)
|
|
4314
|
+
* List recent TikTok videos for a hashtag (creator, caption, views, likes, shares).
|
|
4311
4315
|
*
|
|
4312
4316
|
* Price: $0.00325 per request.
|
|
4313
4317
|
*
|
|
@@ -4320,7 +4324,7 @@ var TiktokNamespace = class {
|
|
|
4320
4324
|
/**
|
|
4321
4325
|
* TikTok Live
|
|
4322
4326
|
*
|
|
4323
|
-
* Check whether a TikTok creator is live and get the current live room (title, viewers, start time) by handle
|
|
4327
|
+
* Check whether a TikTok creator is live and get the current live room (title, viewers, start time) by handle.
|
|
4324
4328
|
*
|
|
4325
4329
|
* Price: $0.002 per request.
|
|
4326
4330
|
*
|
|
@@ -4333,7 +4337,7 @@ var TiktokNamespace = class {
|
|
|
4333
4337
|
/**
|
|
4334
4338
|
* TikTok Profile
|
|
4335
4339
|
*
|
|
4336
|
-
* Fetch a TikTok creator's public profile (followers, likes, bio, verification) by handle
|
|
4340
|
+
* Fetch a TikTok creator's public profile (followers, likes, bio, verification) by handle.
|
|
4337
4341
|
*
|
|
4338
4342
|
* Price: $0.001 per request.
|
|
4339
4343
|
*
|
|
@@ -4346,7 +4350,7 @@ var TiktokNamespace = class {
|
|
|
4346
4350
|
/**
|
|
4347
4351
|
* TikTok Profile Region
|
|
4348
4352
|
*
|
|
4349
|
-
* Resolve the home region (country) of a TikTok creator by handle
|
|
4353
|
+
* Resolve the home region (country) of a TikTok creator by handle.
|
|
4350
4354
|
*
|
|
4351
4355
|
* Price: $0.002 per request.
|
|
4352
4356
|
*
|
|
@@ -4359,7 +4363,7 @@ var TiktokNamespace = class {
|
|
|
4359
4363
|
/**
|
|
4360
4364
|
* TikTok Profile Videos
|
|
4361
4365
|
*
|
|
4362
|
-
* List a TikTok creator's recent videos (views, likes, comments) by handle with cursor pagination
|
|
4366
|
+
* List a TikTok creator's recent videos (views, likes, comments) by handle with cursor pagination.
|
|
4363
4367
|
*
|
|
4364
4368
|
* Price: $0.001 per request.
|
|
4365
4369
|
*
|
|
@@ -4388,7 +4392,7 @@ var TiktokNamespace = class {
|
|
|
4388
4392
|
/**
|
|
4389
4393
|
* TikTok Hashtag Search
|
|
4390
4394
|
*
|
|
4391
|
-
* Search TikTok by hashtag and get matching videos (caption, views, likes, comments, shares) as normalized JSON
|
|
4395
|
+
* Search TikTok by hashtag and get matching videos (caption, views, likes, comments, shares) as normalized JSON.
|
|
4392
4396
|
*
|
|
4393
4397
|
* Price: $0.002 per request.
|
|
4394
4398
|
*
|
|
@@ -4401,7 +4405,7 @@ var TiktokNamespace = class {
|
|
|
4401
4405
|
/**
|
|
4402
4406
|
* TikTok Keyword Search
|
|
4403
4407
|
*
|
|
4404
|
-
* Search TikTok by keyword and get matching videos (caption, views, likes, comments, shares) as normalized JSON
|
|
4408
|
+
* Search TikTok by keyword and get matching videos (caption, views, likes, comments, shares) as normalized JSON.
|
|
4405
4409
|
*
|
|
4406
4410
|
* Price: $0.001 per request.
|
|
4407
4411
|
*
|
|
@@ -4414,7 +4418,7 @@ var TiktokNamespace = class {
|
|
|
4414
4418
|
/**
|
|
4415
4419
|
* TikTok Top Search
|
|
4416
4420
|
*
|
|
4417
|
-
* Search TikTok's top results for a keyword (caption, views, likes, comments, shares) with cursor pagination
|
|
4421
|
+
* Search TikTok's top results for a keyword (caption, views, likes, comments, shares) with cursor pagination.
|
|
4418
4422
|
*
|
|
4419
4423
|
* Price: $0.002 per request.
|
|
4420
4424
|
*
|
|
@@ -4443,7 +4447,7 @@ var TiktokNamespace = class {
|
|
|
4443
4447
|
/**
|
|
4444
4448
|
* TikTok User Search
|
|
4445
4449
|
*
|
|
4446
|
-
* Search TikTok accounts by keyword (handle, nickname, follower count) with cursor pagination
|
|
4450
|
+
* Search TikTok accounts by keyword (handle, nickname, follower count) with cursor pagination.
|
|
4447
4451
|
*
|
|
4448
4452
|
* Price: $0.001 per request.
|
|
4449
4453
|
*
|
|
@@ -4472,7 +4476,7 @@ var TiktokNamespace = class {
|
|
|
4472
4476
|
/**
|
|
4473
4477
|
* TikTok Song
|
|
4474
4478
|
*
|
|
4475
|
-
* Fetch details for a TikTok song or sound (title, author, duration, cover art, and how many videos use it)
|
|
4479
|
+
* Fetch details for a TikTok song or sound (title, author, duration, cover art, and how many videos use it).
|
|
4476
4480
|
*
|
|
4477
4481
|
* Price: $0.002 per request.
|
|
4478
4482
|
*
|
|
@@ -4485,7 +4489,7 @@ var TiktokNamespace = class {
|
|
|
4485
4489
|
/**
|
|
4486
4490
|
* TikTok Song Videos
|
|
4487
4491
|
*
|
|
4488
|
-
* List TikTok videos that use a given song or sound (with descriptions, authors, and engagement stats)
|
|
4492
|
+
* List TikTok videos that use a given song or sound (with descriptions, authors, and engagement stats).
|
|
4489
4493
|
*
|
|
4490
4494
|
* Price: $0.002 per request.
|
|
4491
4495
|
*
|
|
@@ -4514,7 +4518,7 @@ var TiktokNamespace = class {
|
|
|
4514
4518
|
/**
|
|
4515
4519
|
* TikTok Trending Feed
|
|
4516
4520
|
*
|
|
4517
|
-
* Get TikTok's trending feed for a region (caption, views, likes, comments, author) as normalized JSON
|
|
4521
|
+
* Get TikTok's trending feed for a region (caption, views, likes, comments, author) as normalized JSON.
|
|
4518
4522
|
*
|
|
4519
4523
|
* Price: $0.002 per request.
|
|
4520
4524
|
*
|
|
@@ -4527,7 +4531,7 @@ var TiktokNamespace = class {
|
|
|
4527
4531
|
/**
|
|
4528
4532
|
* TikTok Video
|
|
4529
4533
|
*
|
|
4530
|
-
* Fetch a single TikTok video by URL with its caption and engagement counts (views, likes, comments, shares, saves)
|
|
4534
|
+
* Fetch a single TikTok video by URL with its caption and engagement counts (views, likes, comments, shares, saves).
|
|
4531
4535
|
*
|
|
4532
4536
|
* Price: $0.001 per request.
|
|
4533
4537
|
*
|
|
@@ -4540,7 +4544,7 @@ var TiktokNamespace = class {
|
|
|
4540
4544
|
/**
|
|
4541
4545
|
* TikTok Video Comments
|
|
4542
4546
|
*
|
|
4543
|
-
* List the comments on a TikTok video by URL with cursor pagination (text, author, likes, reply count)
|
|
4547
|
+
* List the comments on a TikTok video by URL with cursor pagination (text, author, likes, reply count).
|
|
4544
4548
|
*
|
|
4545
4549
|
* Price: $0.002 per request.
|
|
4546
4550
|
*
|
|
@@ -4569,7 +4573,7 @@ var TiktokNamespace = class {
|
|
|
4569
4573
|
/**
|
|
4570
4574
|
* TikTok Video Transcript
|
|
4571
4575
|
*
|
|
4572
|
-
* Fetch the spoken-word transcript of a TikTok video by URL
|
|
4576
|
+
* Fetch the spoken-word transcript of a TikTok video by URL.
|
|
4573
4577
|
*
|
|
4574
4578
|
* Price: $0.002 per request.
|
|
4575
4579
|
*
|
|
@@ -4603,7 +4607,7 @@ var TiktokShopNamespace = class {
|
|
|
4603
4607
|
/**
|
|
4604
4608
|
* TikTok Shop Product Reviews
|
|
4605
4609
|
*
|
|
4606
|
-
* Fetch customer reviews for a TikTok Shop product by URL (rating, text, reviewer, country, and verified-purchase flag)
|
|
4610
|
+
* Fetch customer reviews for a TikTok Shop product by URL (rating, text, reviewer, country, and verified-purchase flag).
|
|
4607
4611
|
*
|
|
4608
4612
|
* Price: $0.002 per request.
|
|
4609
4613
|
*
|
|
@@ -4629,7 +4633,7 @@ var TiktokShopNamespace = class {
|
|
|
4629
4633
|
/**
|
|
4630
4634
|
* TikTok Shop Store Products
|
|
4631
4635
|
*
|
|
4632
|
-
* List every product of a TikTok Shop store by URL (title, price, sales, and rating per product plus shop-level stats) with cursor pagination
|
|
4636
|
+
* List every product of a TikTok Shop store by URL (title, price, sales, and rating per product plus shop-level stats) with cursor pagination.
|
|
4633
4637
|
*
|
|
4634
4638
|
* Price: $0.002 per request.
|
|
4635
4639
|
*
|
|
@@ -4658,7 +4662,7 @@ var TiktokShopNamespace = class {
|
|
|
4658
4662
|
/**
|
|
4659
4663
|
* TikTok Shop User Showcase
|
|
4660
4664
|
*
|
|
4661
|
-
* List the TikTok Shop products a creator showcases (title, price, rating, and sales per product)
|
|
4665
|
+
* List the TikTok Shop products a creator showcases (title, price, rating, and sales per product).
|
|
4662
4666
|
*
|
|
4663
4667
|
* Price: $0.002 per request.
|
|
4664
4668
|
*
|
|
@@ -4810,7 +4814,7 @@ var TwitterNamespace = class {
|
|
|
4810
4814
|
/**
|
|
4811
4815
|
* Twitter Community
|
|
4812
4816
|
*
|
|
4813
|
-
* Fetch a Twitter/X community's public details (name, description, member count, join policy) by URL
|
|
4817
|
+
* Fetch a Twitter/X community's public details (name, description, member count, join policy) by URL.
|
|
4814
4818
|
*
|
|
4815
4819
|
* Price: $0.002 per request.
|
|
4816
4820
|
*
|
|
@@ -4823,7 +4827,7 @@ var TwitterNamespace = class {
|
|
|
4823
4827
|
/**
|
|
4824
4828
|
* Twitter Community Tweets
|
|
4825
4829
|
*
|
|
4826
|
-
* List recent tweets posted in a Twitter/X community by URL
|
|
4830
|
+
* List recent tweets posted in a Twitter/X community by URL.
|
|
4827
4831
|
*
|
|
4828
4832
|
* Price: $0.002 per request.
|
|
4829
4833
|
*
|
|
@@ -4894,7 +4898,7 @@ var TwitterNamespace = class {
|
|
|
4894
4898
|
/**
|
|
4895
4899
|
* Twitter Profile
|
|
4896
4900
|
*
|
|
4897
|
-
* Fetch a Twitter/X account's public profile (followers, tweets, bio, verification) by handle
|
|
4901
|
+
* Fetch a Twitter/X account's public profile (followers, tweets, bio, verification) by handle.
|
|
4898
4902
|
*
|
|
4899
4903
|
* Price: $0.00075 per request.
|
|
4900
4904
|
*
|
|
@@ -4962,7 +4966,7 @@ var TwitterNamespace = class {
|
|
|
4962
4966
|
/**
|
|
4963
4967
|
* Twitter Tweet
|
|
4964
4968
|
*
|
|
4965
|
-
* Fetch a single Twitter/X tweet by URL with its full text and engagement counts (likes, retweets, replies, quotes, bookmarks, views)
|
|
4969
|
+
* Fetch a single Twitter/X tweet by URL with its full text and engagement counts (likes, retweets, replies, quotes, bookmarks, views).
|
|
4966
4970
|
*
|
|
4967
4971
|
* Price: $0.00075 per request.
|
|
4968
4972
|
*
|
|
@@ -4975,7 +4979,7 @@ var TwitterNamespace = class {
|
|
|
4975
4979
|
/**
|
|
4976
4980
|
* Twitter Tweet Transcript
|
|
4977
4981
|
*
|
|
4978
|
-
* Extract the spoken transcript from a Twitter/X video tweet by URL
|
|
4982
|
+
* Extract the spoken transcript from a Twitter/X video tweet by URL.
|
|
4979
4983
|
*
|
|
4980
4984
|
* Price: $0.002 per request.
|
|
4981
4985
|
*
|
|
@@ -5337,7 +5341,7 @@ var YoutubeNamespace = class {
|
|
|
5337
5341
|
/**
|
|
5338
5342
|
* YouTube Channel
|
|
5339
5343
|
*
|
|
5340
|
-
* Fetch a YouTube channel's stats (subscribers, video count, total views, description) by handle or channel ID
|
|
5344
|
+
* Fetch a YouTube channel's stats (subscribers, video count, total views, description) by handle or channel ID.
|
|
5341
5345
|
*
|
|
5342
5346
|
* Price: $0.002 per request.
|
|
5343
5347
|
*
|
|
@@ -5350,7 +5354,7 @@ var YoutubeNamespace = class {
|
|
|
5350
5354
|
/**
|
|
5351
5355
|
* YouTube Channel Community Posts
|
|
5352
5356
|
*
|
|
5353
|
-
* List a YouTube channel's community posts by handle or channel ID with cursor pagination (text, likes, image, publish time)
|
|
5357
|
+
* List a YouTube channel's community posts by handle or channel ID with cursor pagination (text, likes, image, publish time).
|
|
5354
5358
|
*
|
|
5355
5359
|
* Price: $0.002 per request.
|
|
5356
5360
|
*
|
|
@@ -5379,7 +5383,7 @@ var YoutubeNamespace = class {
|
|
|
5379
5383
|
/**
|
|
5380
5384
|
* YouTube Channel Live Streams
|
|
5381
5385
|
*
|
|
5382
|
-
* List a YouTube channel's live and past-live streams by handle or channel ID with cursor pagination (title, views, length, publish time)
|
|
5386
|
+
* List a YouTube channel's live and past-live streams by handle or channel ID with cursor pagination (title, views, length, publish time).
|
|
5383
5387
|
*
|
|
5384
5388
|
* Price: $0.002 per request.
|
|
5385
5389
|
*
|
|
@@ -5408,7 +5412,7 @@ var YoutubeNamespace = class {
|
|
|
5408
5412
|
/**
|
|
5409
5413
|
* YouTube Channel Playlists
|
|
5410
5414
|
*
|
|
5411
|
-
* List a YouTube channel's playlists by handle or channel ID with cursor pagination (title, video count, thumbnail)
|
|
5415
|
+
* List a YouTube channel's playlists by handle or channel ID with cursor pagination (title, video count, thumbnail).
|
|
5412
5416
|
*
|
|
5413
5417
|
* Price: $0.002 per request.
|
|
5414
5418
|
*
|
|
@@ -5437,7 +5441,7 @@ var YoutubeNamespace = class {
|
|
|
5437
5441
|
/**
|
|
5438
5442
|
* YouTube Channel Shorts
|
|
5439
5443
|
*
|
|
5440
|
-
* List a YouTube channel's Shorts by handle or channel ID with cursor pagination (title, views, likes, duration)
|
|
5444
|
+
* List a YouTube channel's Shorts by handle or channel ID with cursor pagination (title, views, likes, duration).
|
|
5441
5445
|
*
|
|
5442
5446
|
* Price: $0.002 per request.
|
|
5443
5447
|
*
|
|
@@ -5466,7 +5470,7 @@ var YoutubeNamespace = class {
|
|
|
5466
5470
|
/**
|
|
5467
5471
|
* YouTube Channel Videos
|
|
5468
5472
|
*
|
|
5469
|
-
* List a YouTube channel's videos by handle or channel ID with cursor pagination (title, views, length, publish time)
|
|
5473
|
+
* List a YouTube channel's videos by handle or channel ID with cursor pagination (title, views, length, publish time).
|
|
5470
5474
|
*
|
|
5471
5475
|
* Price: $0.002 per request.
|
|
5472
5476
|
*
|
|
@@ -5495,7 +5499,7 @@ var YoutubeNamespace = class {
|
|
|
5495
5499
|
/**
|
|
5496
5500
|
* YouTube Comment Replies
|
|
5497
5501
|
*
|
|
5498
|
-
* List replies to a YouTube comment using a continuation token with cursor pagination (text, author, likes, publish time)
|
|
5502
|
+
* List replies to a YouTube comment using a continuation token with cursor pagination (text, author, likes, publish time).
|
|
5499
5503
|
*
|
|
5500
5504
|
* Price: $0.002 per request.
|
|
5501
5505
|
*
|
|
@@ -5508,7 +5512,7 @@ var YoutubeNamespace = class {
|
|
|
5508
5512
|
/**
|
|
5509
5513
|
* YouTube Community Post
|
|
5510
5514
|
*
|
|
5511
|
-
* Fetch a single YouTube community post by URL (text, images, channel, publish time)
|
|
5515
|
+
* Fetch a single YouTube community post by URL (text, images, channel, publish time).
|
|
5512
5516
|
*
|
|
5513
5517
|
* Price: $0.002 per request.
|
|
5514
5518
|
*
|
|
@@ -5521,7 +5525,7 @@ var YoutubeNamespace = class {
|
|
|
5521
5525
|
/**
|
|
5522
5526
|
* YouTube Playlist
|
|
5523
5527
|
*
|
|
5524
|
-
* List every video in a YouTube playlist (title, length, and channel per video plus playlist owner and totals)
|
|
5528
|
+
* List every video in a YouTube playlist (title, length, and channel per video plus playlist owner and totals).
|
|
5525
5529
|
*
|
|
5526
5530
|
* Price: $0.002 per request.
|
|
5527
5531
|
*
|
|
@@ -5534,7 +5538,7 @@ var YoutubeNamespace = class {
|
|
|
5534
5538
|
/**
|
|
5535
5539
|
* YouTube Search
|
|
5536
5540
|
*
|
|
5537
|
-
* Search YouTube and get matching videos (title, channel, views, length, publish time) as normalized JSON
|
|
5541
|
+
* Search YouTube and get matching videos (title, channel, views, length, publish time) as normalized JSON.
|
|
5538
5542
|
*
|
|
5539
5543
|
* Price: $0.002 per request.
|
|
5540
5544
|
*
|
|
@@ -5547,7 +5551,7 @@ var YoutubeNamespace = class {
|
|
|
5547
5551
|
/**
|
|
5548
5552
|
* YouTube Hashtag Search
|
|
5549
5553
|
*
|
|
5550
|
-
* Search YouTube videos by hashtag with cursor pagination (title, channel, views, length, publish time)
|
|
5554
|
+
* Search YouTube videos by hashtag with cursor pagination (title, channel, views, length, publish time).
|
|
5551
5555
|
*
|
|
5552
5556
|
* Price: $0.002 per request.
|
|
5553
5557
|
*
|
|
@@ -5576,7 +5580,7 @@ var YoutubeNamespace = class {
|
|
|
5576
5580
|
/**
|
|
5577
5581
|
* YouTube Trending Shorts
|
|
5578
5582
|
*
|
|
5579
|
-
* List currently trending YouTube Shorts (title, channel, views, likes, duration)
|
|
5583
|
+
* List currently trending YouTube Shorts (title, channel, views, likes, duration).
|
|
5580
5584
|
*
|
|
5581
5585
|
* Price: $0.002 per request.
|
|
5582
5586
|
*
|
|
@@ -5589,7 +5593,7 @@ var YoutubeNamespace = class {
|
|
|
5589
5593
|
/**
|
|
5590
5594
|
* YouTube Video
|
|
5591
5595
|
*
|
|
5592
|
-
* Fetch a YouTube video's metadata (title, channel, views, likes, duration, publish date) by URL or ID
|
|
5596
|
+
* Fetch a YouTube video's metadata (title, channel, views, likes, duration, publish date) by URL or ID.
|
|
5593
5597
|
*
|
|
5594
5598
|
* Price: $0.002 per request.
|
|
5595
5599
|
*
|
|
@@ -5602,7 +5606,7 @@ var YoutubeNamespace = class {
|
|
|
5602
5606
|
/**
|
|
5603
5607
|
* YouTube Video Comments
|
|
5604
5608
|
*
|
|
5605
|
-
* List the comments on a YouTube video by URL with cursor pagination (text, author, likes, reply count)
|
|
5609
|
+
* List the comments on a YouTube video by URL with cursor pagination (text, author, likes, reply count).
|
|
5606
5610
|
*
|
|
5607
5611
|
* Price: $0.002 per request.
|
|
5608
5612
|
*
|
|
@@ -5631,7 +5635,7 @@ var YoutubeNamespace = class {
|
|
|
5631
5635
|
/**
|
|
5632
5636
|
* YouTube Video Sponsors
|
|
5633
5637
|
*
|
|
5634
|
-
* Detect suspected sponsors and paid promotions in a YouTube video by URL (sponsor names, websites, confidence)
|
|
5638
|
+
* Detect suspected sponsors and paid promotions in a YouTube video by URL (sponsor names, websites, confidence).
|
|
5635
5639
|
*
|
|
5636
5640
|
* Price: $0.002 per request.
|
|
5637
5641
|
*
|
|
@@ -5644,7 +5648,7 @@ var YoutubeNamespace = class {
|
|
|
5644
5648
|
/**
|
|
5645
5649
|
* YouTube Video Transcript
|
|
5646
5650
|
*
|
|
5647
|
-
* Fetch the transcript/captions of a YouTube video by URL or ID
|
|
5651
|
+
* Fetch the transcript/captions of a YouTube video by URL or ID.
|
|
5648
5652
|
*
|
|
5649
5653
|
* Price: $0.002 per request.
|
|
5650
5654
|
*
|