Skip to content

Repository files navigation

ScrapeBadger

ScrapeBadger C# SDK

version CI license

Official C# SDK for ScrapeBadger — one API key for 30+ scraping APIs: Twitter/X, Reddit, Facebook, Instagram, TikTok, YouTube, Amazon, eBay, Walmart, Vinted, Google (18 products), Bing, Yahoo, ChatGPT, Perplexity, real estate, and any URL via the general Web Scraping API. Generated from the ScrapeBadger OpenAPI spec — always in sync with the API. ⚠️ This repository is regenerated automatically; don't send PRs here, request changes via the roadmap.

📚 API docs · 🧰 All SDKs · 🔑 Get an API key — 1,000 free credits

🚀 Install

dotnet add package ScrapeBadger

⚡ Quick start

using ScrapeBadger.Api;
using ScrapeBadger.Client;

var config = new Configuration();
config.ApiKey.Add("X-API-Key", "YOUR_API_KEY");

var twitter = new TwitterApi(config);
var user = await twitter.TwitterGetUserByUsernameAsync("elonmusk");
Console.WriteLine(user);

Every scraper is available as its own API class (TwitterApi, AmazonApi, GoogleApi, …) with one method per endpoint — the full list is in the reference below.

🛠 Development

dotnet build src/ScrapeBadger/ScrapeBadger.csproj   # compile
dotnet test                                          # tests

ScrapeBadger - the C# library for the ScrapeBadger API

Unified credit-based scraping API. https://docs.scrapebadger.com

This C# SDK is automatically generated by the OpenAPI Generator project:

  • API version: 0.1.0
  • SDK version: 0.1.0
  • Generator version: 7.10.0
  • Build package: org.openapitools.codegen.languages.CSharpClientCodegen

Frameworks supported

  • .NET Core >=1.0
  • .NET Framework >=4.6
  • Mono/Xamarin >=vNext

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package Newtonsoft.Json
Install-Package JsonSubTypes
Install-Package System.ComponentModel.Annotations

Installation

Generate the DLL using your preferred tool (e.g. dotnet build)

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using ScrapeBadger.Api;
using ScrapeBadger.Client;
using ScrapeBadger.Model;

Usage

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

Connections

Each ApiClass (properly the ApiClient inside it) will create an instance of HttpClient. It will use that for the entire lifecycle and dispose it when called the Dispose method.

To better manager the connections it's a common practice to reuse the HttpClient and HttpClientHandler (see here for details). To use your own HttpClient instance just pass it to the ApiClass constructor.

HttpClientHandler yourHandler = new HttpClientHandler();
HttpClient yourHttpClient = new HttpClient(yourHandler);
var api = new YourApiClass(yourHttpClient, yourHandler);

If you want to use an HttpClient and don't have access to the handler, for example in a DI context in Asp.net Core when using IHttpClientFactory.

HttpClient yourHttpClient = new HttpClient();
var api = new YourApiClass(yourHttpClient);

You'll loose some configuration settings, the features affected are: Setting and Retrieving Cookies, Client Certificates, Proxy settings. You need to either manually handle those in your setup of the HttpClient or they won't be available.

Here an example of DI setup in a sample web project:

services.AddHttpClient<YourApiClass>(httpClient =>
   new PetApi(httpClient));

Getting Started

using System.Collections.Generic;
using System.Diagnostics;
using System.Net.Http;
using ScrapeBadger.Api;
using ScrapeBadger.Client;
using ScrapeBadger.Model;

namespace Example
{
    public class Example
    {
        public static void Main()
        {

            Configuration config = new Configuration();
            config.BasePath = "https://scrapebadger.com";
            // Configure API key authorization: ApiKeyAuth
            config.ApiKey.Add("X-API-Key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.ApiKeyPrefix.Add("X-API-Key", "Bearer");

            // create instances of HttpClient, HttpClientHandler to be reused later with different Api classes
            HttpClient httpClient = new HttpClient();
            HttpClientHandler httpClientHandler = new HttpClientHandler();
            var apiInstance = new AccountApi(httpClient, config, httpClientHandler);

            try
            {
                // Get account info
                AccountInfo result = apiInstance.AccountGetAccountInfo();
                Debug.WriteLine(result);
            }
            catch (ApiException e)
            {
                Debug.Print("Exception when calling AccountApi.AccountGetAccountInfo: " + e.Message );
                Debug.Print("Status Code: "+ e.ErrorCode);
                Debug.Print(e.StackTrace);
            }

        }
    }
}

Documentation for API Endpoints

All URIs are relative to https://scrapebadger.com

Class Method HTTP request Description
AccountApi AccountGetAccountInfo GET /v1/account/me Get account info
AirbnbApi AirbnbAirbnbScraperHealthCheck GET /v1/airbnb/health Airbnb scraper health check
AirbnbApi AirbnbAirbnbScraperHealthCheckHead HEAD /v1/airbnb/health Airbnb scraper health check
AirbnbApi AirbnbGetAvailabilityCalendar GET /v1/airbnb/listings/{room_id}/calendar Get availability calendar
AirbnbApi AirbnbGetExperienceDetail GET /v1/airbnb/experiences/{experience_id} Get experience detail
AirbnbApi AirbnbGetListingDetail GET /v1/airbnb/listings/{room_id} Get listing detail
AirbnbApi AirbnbGetListingReviews GET /v1/airbnb/listings/{room_id}/reviews Get listing reviews
AirbnbApi AirbnbSearchExperiences GET /v1/airbnb/experiences Search experiences
AirbnbApi AirbnbSearchStays GET /v1/airbnb/search Search stays
AmazonApi AmazonAmazonScraperHealthCheck GET /v1/amazon/health Amazon scraper health check
AmazonApi AmazonAmazonScraperHealthCheckHead HEAD /v1/amazon/health Amazon scraper health check
AmazonApi AmazonBestsellersByCategory GET /v1/amazon/bestsellers Bestsellers by category
AmazonApi AmazonBrowseNodeCategoryListing GET /v1/amazon/category Browse-node category listing
AmazonApi AmazonGetAllSellerOffersBuybox GET /v1/amazon/products/{asin}/offers Get all seller offers (buybox)
AmazonApi AmazonGetProductDetail GET /v1/amazon/products/{asin} Get product detail
AmazonApi AmazonGetProductReviews GET /v1/amazon/products/{asin}/reviews Get product reviews
AmazonApi AmazonGetSellerFeedback GET /v1/amazon/sellers/{seller_id}/feedback Get seller feedback
AmazonApi AmazonGetSellerProfile GET /v1/amazon/sellers/{seller_id} Get seller profile
AmazonApi AmazonGetSellerStorefrontProducts GET /v1/amazon/sellers/{seller_id}/products Get seller storefront products
AmazonApi AmazonKeywordSuggestions GET /v1/amazon/autocomplete Keyword suggestions
AmazonApi AmazonListCategoryAliases GET /v1/amazon/categories List category aliases
AmazonApi AmazonListMarketplaces GET /v1/amazon/markets List marketplaces
AmazonApi AmazonNewReleasesByCategory GET /v1/amazon/new-releases New releases by category
AmazonApi AmazonSearchAmazonProducts GET /v1/amazon/search Search Amazon products
AmazonApi AmazonTodaySDeals GET /v1/amazon/deals Today's deals
ApartmentsApi ApartmentsApartmentsScraperHealthCheck GET /v1/apartments/health Apartments scraper health check
ApartmentsApi ApartmentsApartmentsScraperHealthCheckHead HEAD /v1/apartments/health Apartments scraper health check
ApartmentsApi ApartmentsGetPropertyDetailBySlugId GET /v1/apartments/properties/{slug}/{property_id} Get property detail by slug + id
ApartmentsApi ApartmentsGetPropertyDetailByUrl GET /v1/apartments/property Get property detail by URL
ApartmentsApi ApartmentsSearchRentalListings GET /v1/apartments/search Search rental listings
AppStoreApi AppStoreGetAppDetail GET /v1/app-store/apps/{app_id} Get app detail
AppStoreApi AppStoreGetAppReviews GET /v1/app-store/apps/{app_id}/reviews Get app reviews
AppStoreApi AppStoreGetDeveloperApps GET /v1/app-store/developers/{artist_id} Get developer apps
AppStoreApi AppStoreListGenres GET /v1/app-store/genres List genres
AppStoreApi AppStoreListMarkets GET /v1/app-store/markets List markets
AppStoreApi AppStoreSearchApps GET /v1/app-store/search Search apps
AppStoreApi AppStoreTopCharts GET /v1/app-store/charts Top charts
BaiduApi BaiduBaiduImageSearch GET /v1/baidu/images Baidu image search
BaiduApi BaiduBaiduNewsSearch GET /v1/baidu/news Baidu news search
BaiduApi BaiduBaiduScraperHealthCheck GET /v1/baidu/health Baidu scraper health check
BaiduApi BaiduBaiduScraperHealthCheckHead HEAD /v1/baidu/health Baidu scraper health check
BaiduApi BaiduBaiduWebSearch GET /v1/baidu/search Baidu web search
BaiduApi BaiduSearchSuggestions GET /v1/baidu/autocomplete Search suggestions
BingApi BingBingScraperHealthCheck GET /v1/bing/health Bing scraper health check
BingApi BingBingScraperHealthCheckHead HEAD /v1/bing/health Bing scraper health check
BingApi BingImageSearch GET /v1/bing/images Image search
BingApi BingListSupportedMarkets GET /v1/bing/markets List supported markets
BingApi BingNewsSearch GET /v1/bing/news News search
BingApi BingSearchSuggestions GET /v1/bing/autocomplete Search suggestions
BingApi BingVideoSearch GET /v1/bing/videos Video search
BingApi BingWebSearch GET /v1/bing/search Web search
BookingApi BookingBookingScraperHealthCheck GET /v1/booking/health Booking scraper health check
BookingApi BookingBookingScraperHealthCheckHead HEAD /v1/booking/health Booking scraper health check
BookingApi BookingGetPropertyDetail GET /v1/booking/properties/{country_code}/{slug} Get property detail
BookingApi BookingGetPropertyReviews GET /v1/booking/properties/{country_code}/{slug}/reviews Get property reviews
BookingApi BookingGetRoomTypesAndLiveRates GET /v1/booking/properties/{country_code}/{slug}/rooms Get room types and live rates
BookingApi BookingSearchDestinations GET /v1/booking/destinations Search destinations
BookingApi BookingSearchProperties GET /v1/booking/search Search properties
ChatGPTApi ChatgptAskChatgptAQuestion GET /v1/chatgpt/ask Ask ChatGPT a question
ChatGPTApi ChatgptAskChatgptAQuestionPost POST /v1/chatgpt/ask Ask ChatGPT a question (POST)
ChatGPTApi ChatgptChatgptScraperHealthCheck GET /v1/chatgpt/health ChatGPT scraper health check
ChatGPTApi ChatgptChatgptScraperHealthCheckHead HEAD /v1/chatgpt/health ChatGPT scraper health check
ChatGPTApi ChatgptListChatgptModels GET /v1/chatgpt/models List ChatGPT models
ChatGPTApi ChatgptMeasureABrandSVisibilityInAChatgptAnswer GET /v1/chatgpt/brand-visibility Measure a brand's visibility in a ChatGPT answer
ChatGPTApi ChatgptMeasureABrandSVisibilityInAChatgptAnswerPost POST /v1/chatgpt/brand-visibility Measure a brand's visibility in a ChatGPT answer (POST)
DepopApi DepopDepopScraperHealthCheck GET /v1/depop/health Depop scraper health check
DepopApi DepopDepopScraperHealthCheckHead HEAD /v1/depop/health Depop scraper health check
DepopApi DepopGetAUserSProducts GET /v1/depop/users/{username}/products Get a user's products
DepopApi DepopGetProductDetail GET /v1/depop/products/{product_id} Get product detail
DepopApi DepopGetShopUserProfile GET /v1/depop/users/{username} Get shop/user profile
DepopApi DepopListMarkets GET /v1/depop/markets List markets
DepopApi DepopSearchDepopProducts GET /v1/depop/search Search Depop products
DuckDuckGoApi DuckduckgoDuckduckgoScraperHealthCheck GET /v1/duckduckgo/health DuckDuckGo scraper health check
DuckDuckGoApi DuckduckgoDuckduckgoScraperHealthCheckHead HEAD /v1/duckduckgo/health DuckDuckGo scraper health check
DuckDuckGoApi DuckduckgoImageSearch GET /v1/duckduckgo/images Image search
DuckDuckGoApi DuckduckgoInstantAnswer GET /v1/duckduckgo/instant Instant Answer
DuckDuckGoApi DuckduckgoListSupportedRegions GET /v1/duckduckgo/regions List supported regions
DuckDuckGoApi DuckduckgoNewsSearch GET /v1/duckduckgo/news News search
DuckDuckGoApi DuckduckgoSearchSuggestions GET /v1/duckduckgo/autocomplete Search suggestions
DuckDuckGoApi DuckduckgoVideoSearch GET /v1/duckduckgo/videos Video search
DuckDuckGoApi DuckduckgoWebSearch GET /v1/duckduckgo/search Web search
EBayApi EbayBrowseACategory GET /v1/ebay/categories/{category_id}/items Browse a category
EBayApi EbayCompletedSoldListings GET /v1/ebay/completed Completed / sold listings
EBayApi EbayEbayScraperHealthCheck GET /v1/ebay/health eBay scraper health check
EBayApi EbayEbayScraperHealthCheckHead HEAD /v1/ebay/health eBay scraper health check
EBayApi EbayGetItemDetail GET /v1/ebay/items/{item_id} Get item detail
EBayApi EbayGetItemReviews GET /v1/ebay/items/{item_id}/reviews Get item reviews
EBayApi EbayGetSellerFeedback GET /v1/ebay/sellers/{username}/feedback Get seller feedback
EBayApi EbayGetSellerListings GET /v1/ebay/sellers/{username}/items Get seller listings
EBayApi EbayGetSellerProfile GET /v1/ebay/sellers/{username} Get seller profile
EBayApi EbayKeywordSuggestions GET /v1/ebay/autocomplete Keyword suggestions
EBayApi EbayListCategories GET /v1/ebay/categories List categories
EBayApi EbayListMarkets GET /v1/ebay/markets List markets
EBayApi EbaySearchByImage POST /v1/ebay/search/by-image Search by image
EBayApi EbaySearchListings GET /v1/ebay/search Search listings
FacebookApi FacebookBrowseAMarketplaceCategory GET /v1/facebook/marketplace/category/{category} Browse a Marketplace category
FacebookApi FacebookGetAMarketplaceItem GET /v1/facebook/marketplace/item/{item_id} Get a Marketplace item
FacebookApi FacebookGetAdvertiserPageInfo GET /v1/facebook/ads/pages/{page_id} Get advertiser page info
FacebookApi FacebookGetAnAd GET /v1/facebook/ads/{ad_archive_id} Get an ad
FacebookApi FacebookGetGroupDetail GET /v1/facebook/groups/{group_id} Get group detail
FacebookApi FacebookGetGroupPosts GET /v1/facebook/groups/{group_id}/posts Get group posts
FacebookApi FacebookGetPageDetail GET /v1/facebook/pages/{identifier} Get page detail
FacebookApi FacebookGetPagePosts GET /v1/facebook/pages/{identifier}/posts Get page posts
FacebookApi FacebookGetPostComments GET /v1/facebook/posts/{post_id}/comments Get post comments
FacebookApi FacebookGetPostDetail GET /v1/facebook/posts/{post_id} Get post detail
FacebookApi FacebookGetProfileDetail GET /v1/facebook/profiles/{identifier} Get profile detail
FacebookApi FacebookGetProfilePosts GET /v1/facebook/profiles/{identifier}/posts Get profile posts
FacebookApi FacebookListCategories GET /v1/facebook/marketplace/categories List categories
FacebookApi FacebookListLocations GET /v1/facebook/marketplace/locations List locations
FacebookApi FacebookSearchAdvertiserPages GET /v1/facebook/ads/pages/search Search advertiser pages
FacebookApi FacebookSearchEvents GET /v1/facebook/search/events Search events
FacebookApi FacebookSearchEverything GET /v1/facebook/search Search everything
FacebookApi FacebookSearchGroups GET /v1/facebook/search/groups Search groups
FacebookApi FacebookSearchMarketplace GET /v1/facebook/marketplace/search Search Marketplace
FacebookApi FacebookSearchPages GET /v1/facebook/search/pages Search Pages
FacebookApi FacebookSearchPeople GET /v1/facebook/search/people Search people
FacebookApi FacebookSearchPlaces GET /v1/facebook/search/places Search places
FacebookApi FacebookSearchPosts GET /v1/facebook/search/posts Search posts
FacebookApi FacebookSearchTheAdLibrary GET /v1/facebook/ads/search Search the Ad Library
GeminiApi GeminiAskGeminiAQuestion GET /v1/gemini/ask Ask Gemini a question
GeminiApi GeminiAskGeminiAQuestionPost POST /v1/gemini/ask Ask Gemini a question (POST)
GeminiApi GeminiGeminiScraperHealthCheck GET /v1/gemini/health Gemini scraper health check
GeminiApi GeminiGeminiScraperHealthCheckHead HEAD /v1/gemini/health Gemini scraper health check
GeminiApi GeminiMeasureABrandSVisibilityInAGeminiAnswer GET /v1/gemini/brand-visibility Measure a brand's visibility in a Gemini answer
GeminiApi GeminiMeasureABrandSVisibilityInAGeminiAnswerPost POST /v1/gemini/brand-visibility Measure a brand's visibility in a Gemini answer (POST)
GoogleApi GoogleGetAuthorCitationsPerYearChart GET /v1/google/scholar/author/citation Get author citations-per-year chart
GoogleApi GoogleGetBusinessPosts GET /v1/google/maps/posts Get business posts
GoogleApi GoogleGetCitationFormatsForAScholarPaper GET /v1/google/scholar/cite Get citation formats for a Scholar paper
GoogleApi GoogleGetPlaceDetails GET /v1/google/maps/place Get place details
GoogleApi GoogleGetPlacePhotos GET /v1/google/maps/photos Get place photos
GoogleApi GoogleGetPlaceReviews GET /v1/google/maps/reviews Get place reviews
GoogleApi GoogleGetScholarAuthorProfile GET /v1/google/scholar/author Get Scholar author profile
GoogleApi GoogleGetStockIndexQuote GET /v1/google/finance/quote Get stock/index quote
GoogleApi GoogleGoogleAiModeSearch GET /v1/google/ai-mode/search Google AI Mode search
GoogleApi GoogleGoogleAiOverviewInlineSerpBlock GET /v1/google/ai-overview Google AI Overview (inline SERP block)
GoogleApi GoogleGoogleFlightsCalendarCheapestFarePerDate GET /v1/google/flights/calendar Google Flights calendar — cheapest fare per date
GoogleApi GoogleGoogleFlightsSearch GET /v1/google/flights/search Google Flights search
GoogleApi GoogleGoogleLensVisualSearch GET /v1/google/lens/search Google Lens visual search
GoogleApi GoogleGoogleScraperHealthCheck GET /v1/google/health Google scraper health check
GoogleApi GoogleGoogleScraperHealthCheckHead HEAD /v1/google/health Google scraper health check
GoogleApi GoogleGoogleSearchSuggestions GET /v1/google/autocomplete Google search suggestions
GoogleApi GoogleGoogleShortsSearch GET /v1/google/shorts/search Google Shorts search
GoogleApi GoogleGoogleWebSearch GET /v1/google/search Google web search
GoogleApi GoogleHotelDetails GET /v1/google/hotels/details Hotel details
GoogleApi GoogleImmersiveProductDetail GET /v1/google/products/detail Immersive product detail
GoogleApi GoogleInterestByRegion GET /v1/google/trends/regions Interest by region
GoogleApi GoogleInterestOverTime GET /v1/google/trends/interest Interest over time
GoogleApi GoogleMultiSellerOffersByBarcode GET /v1/google/shopping/offers Multi-seller offers by barcode
GoogleApi GoogleNewsByTopic GET /v1/google/news/topics News by topic
GoogleApi GooglePatentDetails GET /v1/google/patents/detail Patent details
GoogleApi GoogleRelatedTopicsQueries GET /v1/google/trends/related Related topics & queries
GoogleApi GoogleSearchGoogleImages GET /v1/google/images/search Search Google Images
GoogleApi GoogleSearchGoogleJobs GET /v1/google/jobs/search Search Google Jobs
GoogleApi GoogleSearchGoogleMapsPlaces GET /v1/google/maps/search Search Google Maps places
GoogleApi GoogleSearchGoogleNews GET /v1/google/news/search Search Google News
GoogleApi GoogleSearchGoogleScholar GET /v1/google/scholar/search Search Google Scholar
GoogleApi GoogleSearchGoogleVideos GET /v1/google/videos/search Search Google Videos
GoogleApi GoogleSearchHotels GET /v1/google/hotels/search Search hotels
GoogleApi GoogleSearchPatents GET /v1/google/patents/search Search patents
GoogleApi GoogleSearchProducts GET /v1/google/shopping/search Search products
GoogleApi GoogleSearchScholarAuthorProfiles GET /v1/google/scholar/profiles Search Scholar author profiles
GoogleApi GoogleTrendingNews GET /v1/google/news/trending Trending news
GoogleApi GoogleTrendingSearches GET /v1/google/trends/trending Trending searches
GoogleApi GoogleTrendsTopicAutocomplete GET /v1/google/trends/autocomplete Trends topic autocomplete
GooglePlayApi GooglePlayBrowseACategory GET /v1/google-play/categories/{category_id} Browse a category
GooglePlayApi GooglePlayGetAppDetail GET /v1/google-play/apps/{app_id} Get app detail
GooglePlayApi GooglePlayGetAppPermissions GET /v1/google-play/apps/{app_id}/permissions Get app permissions
GooglePlayApi GooglePlayGetAppReviews GET /v1/google-play/apps/{app_id}/reviews Get app reviews
GooglePlayApi GooglePlayGetDeveloperApps GET /v1/google-play/developers/{developer} Get developer apps
GooglePlayApi GooglePlayGetSimilarApps GET /v1/google-play/apps/{app_id}/similar Get similar apps
GooglePlayApi GooglePlayListCategories GET /v1/google-play/categories List categories
GooglePlayApi GooglePlayListMarkets GET /v1/google-play/markets List markets
GooglePlayApi GooglePlaySearchApps GET /v1/google-play/search Search apps
GooglePlayApi GooglePlayTopCharts GET /v1/google-play/collections/{collection} Top charts
IdealistaApi IdealistaAgencyByPhone GET /v1/idealista/agency/by-phone/{phone} Agency by phone
IdealistaApi IdealistaAgencyProfileListings GET /v1/idealista/agency/{short_name} Agency profile + listings
IdealistaApi IdealistaGetListingEngagementStats GET /v1/idealista/properties/{property_code}/stats Get listing engagement stats
IdealistaApi IdealistaGetPropertyDetail GET /v1/idealista/properties/{property_code} Get property detail
IdealistaApi IdealistaIdealistaScraperHealthCheck GET /v1/idealista/health Idealista scraper health check
IdealistaApi IdealistaIdealistaScraperHealthCheckHead HEAD /v1/idealista/health Idealista scraper health check
IdealistaApi IdealistaListMarkets GET /v1/idealista/markets List markets
IdealistaApi IdealistaResolveLocations GET /v1/idealista/suggest Resolve locations
IdealistaApi IdealistaSearchAllBeatsResultCap GET /v1/idealista/search/all Search all (beats result cap)
IdealistaApi IdealistaSearchListings GET /v1/idealista/search Search listings
ImmobiliareApi ImmobiliareGetAgencyProfile GET /v1/immobiliare/agencies/{agency_id} Get agency profile
ImmobiliareApi ImmobiliareGetAnAgencySListings GET /v1/immobiliare/agencies/{agency_id}/listings Get an agency's listings
ImmobiliareApi ImmobiliareGetListingDetail GET /v1/immobiliare/listings/{listing_id} Get listing detail
ImmobiliareApi ImmobiliareImmobiliareScraperHealthCheck GET /v1/immobiliare/health Immobiliare scraper health check
ImmobiliareApi ImmobiliareImmobiliareScraperHealthCheckHead HEAD /v1/immobiliare/health Immobiliare scraper health check
ImmobiliareApi ImmobiliareListFilterEnums GET /v1/immobiliare/reference List filter enums
ImmobiliareApi ImmobiliareListMarkets GET /v1/immobiliare/markets List markets
ImmobiliareApi ImmobiliareLocationAutocomplete GET /v1/immobiliare/autocomplete Location autocomplete
ImmobiliareApi ImmobiliarePriceMTimeSeries GET /v1/immobiliare/market-insights/prices Price €/m² time series
ImmobiliareApi ImmobiliareSearchListings GET /v1/immobiliare/search Search listings
InstagramApi InstagramAboutThisAccount GET /v1/instagram/users/{username}/about About this account
InstagramApi InstagramBlendedTopSearch GET /v1/instagram/search/top Blended top search
InstagramApi InstagramGetActiveStories GET /v1/instagram/users/{username}/stories Get active stories
InstagramApi InstagramGetAudioTrack GET /v1/instagram/audio/{audio_id} Get audio track
InstagramApi InstagramGetComments GET /v1/instagram/media/{code}/comments Get comments
InstagramApi InstagramGetFollowers GET /v1/instagram/users/{username}/followers Get followers
InstagramApi InstagramGetFollowing GET /v1/instagram/users/{username}/following Get following
InstagramApi InstagramGetHashtagInfo GET /v1/instagram/hashtags/{tag} Get hashtag info
InstagramApi InstagramGetHighlights GET /v1/instagram/users/{username}/highlights Get highlights
InstagramApi InstagramGetLikers GET /v1/instagram/media/{code}/likers Get likers
InstagramApi InstagramGetLocation GET /v1/instagram/locations/{location_pk} Get location
InstagramApi InstagramGetPostReelDetail GET /v1/instagram/media/{code} Get post/reel detail
InstagramApi InstagramGetProfile GET /v1/instagram/users/{username} Get profile
InstagramApi InstagramGetTaggedPosts GET /v1/instagram/users/{username}/tagged Get tagged posts
InstagramApi InstagramGetUserPosts GET /v1/instagram/users/{username}/posts Get user posts
InstagramApi InstagramGetUserReels GET /v1/instagram/users/{username}/reels Get user reels
InstagramApi InstagramHealth GET /v1/instagram/health Health
InstagramApi InstagramHealthHead HEAD /v1/instagram/health Health
InstagramApi InstagramRecentHashtagPosts GET /v1/instagram/hashtags/{tag}/recent Recent hashtag posts
InstagramApi InstagramRelatedProfiles GET /v1/instagram/users/{username}/related Related profiles
InstagramApi InstagramSearchHashtags GET /v1/instagram/search/hashtags Search hashtags
InstagramApi InstagramSearchUsers GET /v1/instagram/search/users Search users
InstagramApi InstagramTopHashtagPosts GET /v1/instagram/hashtags/{tag}/top Top hashtag posts
LeboncoinApi LeboncoinGetASellerSAds GET /v1/leboncoin/sellers/{user_id}/listings Get a seller's ads
LeboncoinApi LeboncoinGetAdDetail GET /v1/leboncoin/ads/{list_id} Get ad detail
LeboncoinApi LeboncoinGetSellerProfile GET /v1/leboncoin/sellers/{user_id} Get seller profile
LeboncoinApi LeboncoinGetSimilarAds GET /v1/leboncoin/ads/{list_id}/similar Get similar ads
LeboncoinApi LeboncoinLeboncoinScraperHealthCheck GET /v1/leboncoin/health Leboncoin scraper health check
LeboncoinApi LeboncoinLeboncoinScraperHealthCheckHead HEAD /v1/leboncoin/health Leboncoin scraper health check
LeboncoinApi LeboncoinListCategories GET /v1/leboncoin/categories List categories
LeboncoinApi LeboncoinListDepartments GET /v1/leboncoin/departments List departments
LeboncoinApi LeboncoinListMarkets GET /v1/leboncoin/markets List markets
LeboncoinApi LeboncoinListRegions GET /v1/leboncoin/regions List regions
LeboncoinApi LeboncoinLocationAutocomplete GET /v1/leboncoin/locations/search Location autocomplete
LeboncoinApi LeboncoinSearchLeboncoinAds GET /v1/leboncoin/search Search Leboncoin ads
LinkedInApi LinkedinGetACompanySJobPostings GET /v1/linkedin/companies/{company_id}/jobs Get a company's job postings
LinkedInApi LinkedinGetACourse GET /v1/linkedin/learning/{course_slug} Get a course
LinkedInApi LinkedinGetAPublicArticle GET /v1/linkedin/articles/{article_slug} Get a public article
LinkedInApi LinkedinGetAPublicPost GET /v1/linkedin/posts/{post_slug} Get a public post
LinkedInApi LinkedinGetCompany GET /v1/linkedin/companies/{universal_name} Get company
LinkedInApi LinkedinGetJobDetail GET /v1/linkedin/jobs/{job_id} Get job detail
LinkedInApi LinkedinGetPublicProfile GET /v1/linkedin/profiles/{public_id} Get public profile
LinkedInApi LinkedinGetSchool GET /v1/linkedin/schools/{universal_name} Get school
LinkedInApi LinkedinLinkedinScraperHealthCheck GET /v1/linkedin/health LinkedIn scraper health check
LinkedInApi LinkedinLinkedinScraperHealthCheckHead HEAD /v1/linkedin/health LinkedIn scraper health check
LinkedInApi LinkedinSearchLinkedinJobs GET /v1/linkedin/jobs/search Search LinkedIn jobs
LinkedInApi LinkedinSuggestLocationGeoIds GET /v1/linkedin/geo/suggest Suggest location geo ids
LoopNetApi LoopnetGetBrokerProfile GET /v1/loopnet/brokers/{slug}/{broker_id} Get broker profile
LoopNetApi LoopnetGetListingDetail GET /v1/loopnet/listings/{listing_id} Get listing detail
LoopNetApi LoopnetListCoverageMarkets GET /v1/loopnet/markets List coverage markets
LoopNetApi LoopnetListPropertyTypes GET /v1/loopnet/property-types List property types
LoopNetApi LoopnetLoopnetScraperHealthCheck GET /v1/loopnet/health LoopNet scraper health check
LoopNetApi LoopnetLoopnetScraperHealthCheckHead HEAD /v1/loopnet/health LoopNet scraper health check
LoopNetApi LoopnetSearchCommercialRealEstate GET /v1/loopnet/search Search commercial real estate
PerplexityApi PerplexityAskPerplexityAQuestion GET /v1/perplexity/ask Ask Perplexity a question
PerplexityApi PerplexityAskPerplexityAQuestionPost POST /v1/perplexity/ask Ask Perplexity a question (POST)
PerplexityApi PerplexityMeasureABrandSVisibilityInAPerplexityAnswer GET /v1/perplexity/brand-visibility Measure a brand's visibility in a Perplexity answer
PerplexityApi PerplexityMeasureABrandSVisibilityInAPerplexityAnswerPost POST /v1/perplexity/brand-visibility Measure a brand's visibility in a Perplexity answer (POST)
PerplexityApi PerplexityPerplexityScraperHealthCheck GET /v1/perplexity/health Perplexity scraper health check
PerplexityApi PerplexityPerplexityScraperHealthCheckHead HEAD /v1/perplexity/health Perplexity scraper health check
RealtorApi RealtorGetFullPropertyDetail GET /v1/realtor/properties/{property_id} Get full property detail
RealtorApi RealtorListMarkets GET /v1/realtor/markets List markets
RealtorApi RealtorLocationAutocomplete GET /v1/realtor/autocomplete Location autocomplete
RealtorApi RealtorRealtorScraperHealthCheck GET /v1/realtor/health Realtor scraper health check
RealtorApi RealtorRealtorScraperHealthCheckHead HEAD /v1/realtor/health Realtor scraper health check
RealtorApi RealtorSearchPropertyListings GET /v1/realtor/search Search property listings
RedditApi RedditGetCrossPosts GET /v1/reddit/posts/{post_id}/duplicates Get cross-posts
RedditApi RedditGetPostComments GET /v1/reddit/posts/{post_id}/comments Get post comments
RedditApi RedditGetPostDetail GET /v1/reddit/posts/{post_id} Get post detail
RedditApi RedditGetPostsByDomain GET /v1/reddit/domains/{domain}/posts Get posts by domain
RedditApi RedditGetSubredditInfo GET /v1/reddit/subreddits/{subreddit} Get subreddit info
RedditApi RedditGetSubredditPosts GET /v1/reddit/subreddits/{subreddit}/posts Get subreddit posts
RedditApi RedditGetSubredditRules GET /v1/reddit/subreddits/{subreddit}/rules Get subreddit rules
RedditApi RedditGetTrendingPosts GET /v1/reddit/posts/trending Get trending posts
RedditApi RedditGetUserProfile GET /v1/reddit/users/{username} Get user profile
RedditApi RedditGetUserSComments GET /v1/reddit/users/{username}/comments Get user's comments
RedditApi RedditGetUserSModeratedSubreddits GET /v1/reddit/users/{username}/moderated Get user's moderated subreddits
RedditApi RedditGetUserSPosts GET /v1/reddit/users/{username}/posts Get user's posts
RedditApi RedditGetUserSTrophies GET /v1/reddit/users/{username}/trophies Get user's trophies
RedditApi RedditGetWikiPageContent GET /v1/reddit/subreddits/{subreddit}/wiki/{page} Get wiki page content
RedditApi RedditListWikiPages GET /v1/reddit/subreddits/{subreddit}/wiki List wiki pages
RedditApi RedditNewSubreddits GET /v1/reddit/subreddits/new New subreddits
RedditApi RedditPopularSubreddits GET /v1/reddit/subreddits/popular Popular subreddits
RedditApi RedditRedditScraperHealthCheck GET /v1/reddit/health Reddit scraper health check
RedditApi RedditRedditScraperHealthCheckHead HEAD /v1/reddit/health Reddit scraper health check
RedditApi RedditSearchRedditPosts GET /v1/reddit/search/posts Search Reddit posts
RedditApi RedditSearchSubreddits GET /v1/reddit/search/subreddits Search subreddits
RedditApi RedditSearchUsers GET /v1/reddit/search/users Search users
RedfinApi RedfinGetAgentProfileListings GET /v1/redfin/agent Get agent profile + listings
RedfinApi RedfinGetPropertyDetail GET /v1/redfin/property/{property_id} Get property detail
RedfinApi RedfinGetPropertyDetailByUrl GET /v1/redfin/property Get property detail by URL
RedfinApi RedfinListCoverageMarkets GET /v1/redfin/markets List coverage markets
RedfinApi RedfinRedfinScraperHealthCheck GET /v1/redfin/health Redfin scraper health check
RedfinApi RedfinRedfinScraperHealthCheckHead HEAD /v1/redfin/health Redfin scraper health check
RedfinApi RedfinRegionAddressSuggestions GET /v1/redfin/autocomplete Region/address suggestions
RedfinApi RedfinSearchProperties GET /v1/redfin/search Search properties
TikTokApi TiktokGeneralSearch GET /v1/tiktok/search General search
TikTokApi TiktokGetCommentReplies GET /v1/tiktok/comments/{comment_id}/replies Get comment replies
TikTokApi TiktokGetComments GET /v1/tiktok/videos/{video_id}/comments Get comments
TikTokApi TiktokGetFollowersDeprecated GET /v1/tiktok/users/{username}/followers Get followers (deprecated)
TikTokApi TiktokGetFollowingDeprecated GET /v1/tiktok/users/{username}/following Get following (deprecated)
TikTokApi TiktokGetHashtagDetail GET /v1/tiktok/hashtags/{name} Get hashtag detail
TikTokApi TiktokGetHashtagVideos GET /v1/tiktok/hashtags/{name}/videos Get hashtag videos
TikTokApi TiktokGetLikedVideosDeprecated GET /v1/tiktok/users/{username}/liked Get liked videos (deprecated)
TikTokApi TiktokGetMusicSoundDetail GET /v1/tiktok/music/{music_id} Get music/sound detail
TikTokApi TiktokGetMusicVideos GET /v1/tiktok/music/{music_id}/videos Get music videos
TikTokApi TiktokGetOembedMetadata GET /v1/tiktok/oembed Get oEmbed metadata
TikTokApi TiktokGetRelatedVideos GET /v1/tiktok/videos/{video_id}/related Get related videos
TikTokApi TiktokGetReposts GET /v1/tiktok/users/{username}/reposts Get reposts
TikTokApi TiktokGetTiktokAdDetail GET /v1/tiktok/ads/{ad_id} Get TikTok ad detail
TikTokApi TiktokGetTranscript GET /v1/tiktok/videos/{video_id}/transcript Get transcript
TikTokApi TiktokGetUserProfile GET /v1/tiktok/users/{username} Get user profile
TikTokApi TiktokGetUserVideos GET /v1/tiktok/users/{username}/videos Get user videos
TikTokApi TiktokGetVideoDetail GET /v1/tiktok/videos/{video_id} Get video detail
TikTokApi TiktokHealthCheck GET /v1/tiktok/health Health check
TikTokApi TiktokHealthCheckHead HEAD /v1/tiktok/health Health check
TikTokApi TiktokListRegions GET /v1/tiktok/regions List regions
TikTokApi TiktokSearchHashtags GET /v1/tiktok/search/hashtags Search hashtags
TikTokApi TiktokSearchTheTiktokAdLibrary GET /v1/tiktok/ads/search Search the TikTok Ad Library
TikTokApi TiktokSearchTiktokAdvertisers GET /v1/tiktok/ads/advertisers Search TikTok advertisers
TikTokApi TiktokSearchTiktokShopProducts GET /v1/tiktok/shop/search Search TikTok Shop products
TikTokApi TiktokSearchUsers GET /v1/tiktok/search/users Search users
TikTokApi TiktokSearchVideos GET /v1/tiktok/search/videos Search videos
TikTokApi TiktokTiktokShopCategorySubcategoriesTopProducts GET /v1/tiktok/shop/categories/{category_id} TikTok Shop category: subcategories + top products
TikTokApi TiktokTiktokShopProductDetail GET /v1/tiktok/shop/products/{product_id} TikTok Shop product detail
TikTokApi TiktokTiktokShopProductReviews GET /v1/tiktok/shop/products/{product_id}/reviews TikTok Shop product reviews
TikTokApi TiktokTiktokShopRootCategories GET /v1/tiktok/shop/categories TikTok Shop root categories
TikTokApi TiktokTiktokShopStoreProducts GET /v1/tiktok/shop/stores/{seller_id} TikTok Shop store + products
TikTokApi TiktokTrendingHashtags GET /v1/tiktok/trending/hashtags Trending hashtags
TikTokApi TiktokTrendingSongs GET /v1/tiktok/trending/songs Trending songs
TikTokApi TiktokTrendingVideos GET /v1/tiktok/trending/videos Trending videos
TwitterApi TwitterAdvancedTweetSearch GET /v1/twitter/tweets/advanced_search Advanced tweet search
TwitterApi TwitterBatchGetUsersByIds GET /v1/twitter/users/batch_by_ids Batch get users by IDs
TwitterApi TwitterBatchGetUsersByUsernames GET /v1/twitter/users/batch_by_usernames Batch get users by usernames
TwitterApi TwitterConfigureWebhookOnAMonitor POST /v1/twitter/stream/webhooks Configure webhook on a monitor
TwitterApi TwitterCreateFilterRule POST /v1/twitter/stream/filter-rules Create filter rule
TwitterApi TwitterCreateStreamMonitor POST /v1/twitter/stream/monitors Create stream monitor
TwitterApi TwitterDeleteFilterRule DELETE /v1/twitter/stream/filter-rules/{rule_id} Delete filter rule
TwitterApi TwitterDeleteStreamMonitor DELETE /v1/twitter/stream/monitors/{monitor_id} Delete stream monitor
TwitterApi TwitterGetArticleById GET /v1/twitter/tweets/article/{article_id} Get article by ID
TwitterApi TwitterGetBroadcastDetails GET /v1/twitter/spaces/broadcast/{broadcast_id} Get broadcast details
TwitterApi TwitterGetCommunityDetails GET /v1/twitter/communities/{community_id} Get community details
TwitterApi TwitterGetCommunityNotes GET /v1/twitter/tweets/tweet/{tweet_id}/community_notes Get community notes
TwitterApi TwitterGetCommunityTweets GET /v1/twitter/communities/{community_id}/tweets Get community tweets
TwitterApi TwitterGetFilterRule GET /v1/twitter/stream/filter-rules/{rule_id} Get filter rule
TwitterApi TwitterGetFilterRulePerPollRates GET /v1/twitter/stream/filter-rules-pricing Get filter rule per-poll rates
TwitterApi TwitterGetListDetails GET /v1/twitter/lists/{list_id}/detail Get list details
TwitterApi TwitterGetListTweets GET /v1/twitter/lists/{list_id}/tweets Get list tweets
TwitterApi TwitterGetPlaceDetails GET /v1/twitter/geo/places/{place_id} Get place details
TwitterApi TwitterGetSimilarTweets GET /v1/twitter/tweets/tweet/{tweet_id}/similar Get similar tweets
TwitterApi TwitterGetSpaceDetails GET /v1/twitter/spaces/{space_id} Get Space details
TwitterApi TwitterGetStreamMonitor GET /v1/twitter/stream/monitors/{monitor_id} Get stream monitor
TwitterApi TwitterGetTrendingTopics GET /v1/twitter/trends/ Get trending topics
TwitterApi TwitterGetTrendsByLocation GET /v1/twitter/trends/place/{woeid} Get trends by location
TwitterApi TwitterGetTweetDetails GET /v1/twitter/tweets/tweet/{tweet_id} Get tweet details
TwitterApi TwitterGetTweetEditHistory GET /v1/twitter/tweets/tweet/{tweet_id}/edit_history Get tweet edit history
TwitterApi TwitterGetTweetFavoriters GET /v1/twitter/tweets/tweet/{tweet_id}/favoriters Get tweet favoriters
TwitterApi TwitterGetTweetQuotes GET /v1/twitter/tweets/tweet/{tweet_id}/quotes Get tweet quotes
TwitterApi TwitterGetTweetReplies GET /v1/twitter/tweets/tweet/{tweet_id}/replies Get tweet replies
TwitterApi TwitterGetTweetRetweeters GET /v1/twitter/tweets/tweet/{tweet_id}/retweeters Get tweet retweeters
TwitterApi TwitterGetTweetsByIds GET /v1/twitter/tweets/ Get tweets by IDs
TwitterApi TwitterGetUserArticles GET /v1/twitter/users/{user_id}/articles Get user articles
TwitterApi TwitterGetUserById GET /v1/twitter/users/{user_id}/by_id Get user by ID
TwitterApi TwitterGetUserByUsername GET /v1/twitter/users/{username}/by_username Get user by username
TwitterApi TwitterGetUserFollowers GET /v1/twitter/users/{username}/followers Get user followers
TwitterApi TwitterGetUserFollowing GET /v1/twitter/users/{username}/followings Get user following
TwitterApi TwitterGetUserMentions GET /v1/twitter/users/{username}/mentions Get user mentions
TwitterApi TwitterGetUserSubscriptions GET /v1/twitter/users/{user_id}/subscriptions Get user subscriptions
TwitterApi TwitterGetUserTweets GET /v1/twitter/users/{username}/latest_tweets Get user tweets
TwitterApi TwitterListBillingLogs GET /v1/twitter/stream/billing-logs List billing logs
TwitterApi TwitterListDeliveryLogsForAFilterRule GET /v1/twitter/stream/filter-rules/{rule_id}/logs List delivery logs for a filter rule
TwitterApi TwitterListFilterRules GET /v1/twitter/stream/filter-rules List filter rules
TwitterApi TwitterListStreamMonitors GET /v1/twitter/stream/monitors List stream monitors
TwitterApi TwitterListTweetDeliveryLogs GET /v1/twitter/stream/logs List tweet delivery logs
TwitterApi TwitterListWebhooks GET /v1/twitter/stream/webhooks List webhooks
TwitterApi TwitterRemoveWebhookFromMonitor DELETE /v1/twitter/stream/webhooks/{webhook_id} Remove webhook from monitor
TwitterApi TwitterSearchCommunities GET /v1/twitter/communities/search Search communities
TwitterApi TwitterSearchListTweets GET /v1/twitter/lists/{list_id}/search_tweets Search list tweets
TwitterApi TwitterSearchPlaces GET /v1/twitter/geo/search Search places
TwitterApi TwitterSearchUsers GET /v1/twitter/users/search_users Search users
TwitterApi TwitterTestWebhookDelivery POST /v1/twitter/stream/webhooks/test Test webhook delivery
TwitterApi TwitterTwitterScraperHealthCheck GET /v1/twitter/health Twitter scraper health check
TwitterApi TwitterTwitterScraperHealthCheckHead HEAD /v1/twitter/health Twitter scraper health check
TwitterApi TwitterUpdateFilterRule PATCH /v1/twitter/stream/filter-rules/{rule_id} Update filter rule
TwitterApi TwitterUpdateStreamMonitor PATCH /v1/twitter/stream/monitors/{monitor_id} Update stream monitor
TwitterApi TwitterValidateSearchQuery POST /v1/twitter/stream/filter-rules/validate Validate search query
VintedApi VintedGetItemDetails GET /v1/vinted/items/{item_id} Get item details
VintedApi VintedGetUserProfile GET /v1/vinted/users/{user_id} Get user profile
VintedApi VintedGetUserSListedItems GET /v1/vinted/users/{user_id}/items Get user's listed items
VintedApi VintedListColors GET /v1/vinted/colors List colors
VintedApi VintedListItemConditions GET /v1/vinted/statuses List item conditions
VintedApi VintedListMarkets GET /v1/vinted/markets List markets
VintedApi VintedSearchBrands GET /v1/vinted/brands Search brands
VintedApi VintedSearchVintedItems GET /v1/vinted/search Search Vinted items
VintedApi VintedVintedScraperHealthCheck GET /v1/vinted/health Vinted scraper health check
VintedApi VintedVintedScraperHealthCheckHead HEAD /v1/vinted/health Vinted scraper health check
WalmartApi WalmartBrowseACategory GET /v1/walmart/category Browse a category
WalmartApi WalmartDealsRollbacksAndClearance GET /v1/walmart/deals Deals, rollbacks and clearance
WalmartApi WalmartGetASellerSCatalogue GET /v1/walmart/sellers/{seller_id}/products Get a seller's catalogue
WalmartApi WalmartGetProductDetail GET /v1/walmart/products/{item_id} Get product detail
WalmartApi WalmartGetProductReviews GET /v1/walmart/products/{item_id}/reviews Get product reviews
WalmartApi WalmartGetSellerProfile GET /v1/walmart/sellers/{seller_id} Get seller profile
WalmartApi WalmartGetStoreNearbyStores GET /v1/walmart/stores/{store_id} Get store + nearby stores
WalmartApi WalmartListSupportedMarkets GET /v1/walmart/markets List supported markets
WalmartApi WalmartSearchProducts GET /v1/walmart/search Search products
WalmartApi WalmartSearchSuggestions GET /v1/walmart/autocomplete Search suggestions
WalmartApi WalmartWalmartScraperHealthCheck GET /v1/walmart/health Walmart scraper health check
WalmartApi WalmartWalmartScraperHealthCheckHead HEAD /v1/walmart/health Walmart scraper health check
WebApi WebDetectAntiBotAndCaptchaSystems POST /v1/web/detect Detect anti-bot and CAPTCHA systems
WebApi WebExtractStructuredData POST /v1/web/extract Extract structured data
WebApi WebGetBatchJobStatus GET /v1/web/batch/{job_id} Get batch job status
WebApi WebPollAnAutoUnblockDiscoveryJob GET /v1/web/unblock/{job_id} Poll an auto-unblock discovery job
WebApi WebScrapeAUrl POST /v1/web/scrape Scrape a URL
WebApi WebSubmitBatchScrapingJob POST /v1/web/batch Submit batch scraping job
WebApi WebTakeAScreenshot POST /v1/web/screenshot Take a screenshot
WebApi WebWebScraperHealthCheck GET /v1/web/health Web scraper health check
WebApi WebWebScraperHealthCheckHead HEAD /v1/web/health Web scraper health check
YahooApi YahooImageSearch GET /v1/yahoo/images Image search
YahooApi YahooListSupportedMarkets GET /v1/yahoo/markets List supported markets
YahooApi YahooNewsSearch GET /v1/yahoo/news News search
YahooApi YahooSearchSuggestions GET /v1/yahoo/autocomplete Search suggestions
YahooApi YahooVideoSearch GET /v1/yahoo/videos Video search
YahooApi YahooWebSearch GET /v1/yahoo/search Web search
YahooApi YahooYahooScraperHealthCheck GET /v1/yahoo/health Yahoo scraper health check
YahooApi YahooYahooScraperHealthCheckHead HEAD /v1/yahoo/health Yahoo scraper health check
YandexApi YandexImageSearch GET /v1/yandex/images/search Image search
YandexApi YandexListSupportedMarkets GET /v1/yandex/markets List supported markets
YandexApi YandexReverseImageSearch GET /v1/yandex/images/reverse Reverse image search
YandexApi YandexWebSearch GET /v1/yandex/search Web search
YandexApi YandexYandexScraperHealthCheck GET /v1/yandex/health Yandex scraper health check
YandexApi YandexYandexScraperHealthCheckHead HEAD /v1/yandex/health Yandex scraper health check
YouTubeApi YoutubeBatchVideoDetail POST /v1/youtube/videos/batch Batch video detail
YouTubeApi YoutubeChannelAbout GET /v1/youtube/channels/{channel_id}/about Channel about
YouTubeApi YoutubeChannelPlaylists GET /v1/youtube/channels/{channel_id}/playlists Channel playlists
YouTubeApi YoutubeChannelShorts GET /v1/youtube/channels/{channel_id}/shorts Channel shorts
YouTubeApi YoutubeChannelStreams GET /v1/youtube/channels/{channel_id}/streams Channel streams
YouTubeApi YoutubeChannelVideos GET /v1/youtube/channels/{channel_id}/videos Channel videos
YouTubeApi YoutubeCommentReplies GET /v1/youtube/videos/{video_id}/comments/{comment_id}/replies Comment replies
YouTubeApi YoutubeCommunityPostComments GET /v1/youtube/posts/{post_id}/comments Community post comments
YouTubeApi YoutubeCommunityPosts GET /v1/youtube/channels/{channel_id}/community Community posts
YouTubeApi YoutubeContentRegions GET /v1/youtube/regions Content regions
YouTubeApi YoutubeGetACommunityPost GET /v1/youtube/posts/{post_id} Get a community post
YouTubeApi YoutubeGetAMixRadioQueue GET /v1/youtube/mixes/{playlist_id} Get a mix / radio queue
YouTubeApi YoutubeGetAShort GET /v1/youtube/shorts/{video_id} Get a Short
YouTubeApi YoutubeGetChannelDetail GET /v1/youtube/channels/{channel_id} Get channel detail
YouTubeApi YoutubeGetPlaylistDetail GET /v1/youtube/playlists/{playlist_id} Get playlist detail
YouTubeApi YoutubeGetVideoDetail GET /v1/youtube/videos/{video_id} Get video detail
YouTubeApi YoutubeGuestHomeFeed GET /v1/youtube/home Guest home feed
YouTubeApi YoutubeKeywordSuggestions GET /v1/youtube/autocomplete Keyword suggestions
YouTubeApi YoutubeListCaptionTracks GET /v1/youtube/videos/{video_id}/captions List caption tracks
YouTubeApi YoutubeLiveChatMessages GET /v1/youtube/videos/{video_id}/live_chat Live chat messages
YouTubeApi YoutubeOembedMetadata GET /v1/youtube/oembed oEmbed metadata
YouTubeApi YoutubePlaylistItemsPage GET /v1/youtube/playlists/{playlist_id}/items Playlist items page
YouTubeApi YoutubeRelatedVideos GET /v1/youtube/videos/{video_id}/related Related videos
YouTubeApi YoutubeResolveHandleUrlToId GET /v1/youtube/channels/resolve Resolve handle/URL to id
YouTubeApi YoutubeSearchWithinAChannel GET /v1/youtube/channels/{channel_id}/search Search within a channel
YouTubeApi YoutubeSearchYoutube GET /v1/youtube/search Search YouTube
YouTubeApi YoutubeSearchYoutubeMusic GET /v1/youtube/music/search Search YouTube Music
YouTubeApi YoutubeShortsBySound GET /v1/youtube/shorts/by_sound/{sound_id} Shorts by sound
YouTubeApi YoutubeStreamFormats GET /v1/youtube/videos/{video_id}/streams Stream formats
YouTubeApi YoutubeSubscriberCountFast GET /v1/youtube/channels/{channel_id}/subscriber_count Subscriber count (fast)
YouTubeApi YoutubeSupportedMarkets GET /v1/youtube/markets Supported markets
YouTubeApi YoutubeTrendingShorts GET /v1/youtube/trending/shorts Trending shorts
YouTubeApi YoutubeTrendingVideos GET /v1/youtube/trending Trending videos
YouTubeApi YoutubeUiLanguages GET /v1/youtube/languages UI languages
YouTubeApi YoutubeVideoCategories GET /v1/youtube/categories Video categories
YouTubeApi YoutubeVideoComments GET /v1/youtube/videos/{video_id}/comments Video comments
YouTubeApi YoutubeVideoTranscript GET /v1/youtube/videos/{video_id}/transcript Video transcript
YouTubeApi YoutubeVideosUnderAHashtag GET /v1/youtube/hashtags/{tag} Videos under a hashtag
YouTubeApi YoutubeYoutubeScraperHealthCheck GET /v1/youtube/health YouTube scraper health check
YouTubeApi YoutubeYoutubeScraperHealthCheckHead HEAD /v1/youtube/health YouTube scraper health check
ZillowApi ZillowGetAgentProfileListings GET /v1/zillow/agent Get agent profile + listings
ZillowApi ZillowGetMultifamilyBuilding GET /v1/zillow/building Get multifamily building
ZillowApi ZillowGetPropertyDetail GET /v1/zillow/property/{zpid} Get property detail
ZillowApi ZillowGetPropertyDetailByUrl GET /v1/zillow/property Get property detail by URL
ZillowApi ZillowListCoverageMarkets GET /v1/zillow/markets List coverage markets
ZillowApi ZillowRegionAddressSuggestions GET /v1/zillow/autocomplete Region/address suggestions
ZillowApi ZillowSearchProperties GET /v1/zillow/search Search properties
ZillowApi ZillowZillowScraperHealthCheck GET /v1/zillow/health Zillow scraper health check
ZillowApi ZillowZillowScraperHealthCheckHead HEAD /v1/zillow/health Zillow scraper health check

Documentation for Models

Documentation for Authorization

Authentication schemes defined for the API:

ApiKeyAuth

  • Type: API key
  • API key parameter name: X-API-Key
  • Location: HTTP header

About

Official C# SDK for ScrapeBadger - Web scraping APIs for Twitter, Google, Amazon and more (generated from OpenAPI)

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages