scrape-badger/scrapebadger-php

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

Maintainers

Package info

github.com/scrape-badger/scrapebadger-php

Homepage

pkg:composer/scrape-badger/scrapebadger-php

Transparency log

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.1.0 2026-08-10 18:21 UTC

This package is auto-updated.

Last update: 2026-08-12 20:36:28 UTC


README

ScrapeBadger

ScrapeBadger PHP SDK

version CI license

Official PHP 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

composer require scrape-badger/scrapebadger-php

โšก Quick start

<?php
require_once __DIR__ . '/vendor/autoload.php';

$config = ScrapeBadger\Configuration::getDefaultConfiguration()
    ->setApiKey('X-API-Key', 'YOUR_API_KEY');

$twitter = new ScrapeBadger\Api\TwitterApi(config: $config);
$user = $twitter->twitterGetUserByUsername('elonmusk');
var_dump($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

composer install                     # deps
composer validate --strict           # manifest lint
find lib -name '*.php' | xargs -n1 php -l   # syntax
./vendor/bin/phpunit                 # tests

OpenAPIClient-php

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

Installation & Usage

Requirements

PHP 7.4 and later. Should also work with PHP 8.0.

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/scrape-badger/scrapebadger-php.git"
    }
  ],
  "require": {
    "scrape-badger/scrapebadger-php": "*@dev"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

<?php
require_once('/path/to/OpenAPIClient-php/vendor/autoload.php');

Getting Started

Please follow the installation procedure and then run the following:

<?php
require_once(__DIR__ . '/vendor/autoload.php');



// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\AccountApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

try {
    $result = $apiInstance->accountGetAccountInfo();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->accountGetAccountInfo: ', $e->getMessage(), PHP_EOL;
}

API Endpoints

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

Class Method HTTP request Description
AccountApi accountGetAccountInfo GET /v1/account/me Get account info
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
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 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 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 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 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 tiktokSearchUsers GET /v1/tiktok/search/users Search users
TikTokApi tiktokSearchVideos GET /v1/tiktok/search/videos Search videos
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 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

Models

Authorization

Authentication schemes defined for the API:

ApiKeyAuth

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

Tests

To run the tests, use:

composer install
vendor/bin/phpunit

Author

About this package

This PHP package is automatically generated by the OpenAPI Generator project:

  • API version: 0.1.0
    • Package version: 0.1.0
    • Generator version: 7.10.0
  • Build package: org.openapitools.codegen.languages.PhpClientCodegen