Structured Data APIs FAQ
Welcome to the ScrapeOps Structured Data APIs FAQ page. Here you will find answers to the most common questions users have when using the ScrapeOps Structured Data APIs.
Frequently Asked Questions
Overview
- What Are The Structured Data APIs?
- How Are The Data APIs Different From The Parser API?
- Which Websites And Endpoints Are Supported?
Getting Started & Usage
- How To Use The Structured Data APIs?
- What Data Is Returned?
- Do I Need To Handle Proxies Or Anti-Bot Measures?
Supported Endpoints
- What Amazon Endpoints Are Available?
- What eBay Endpoints Are Available?
- What Walmart Endpoints Are Available?
- What Redfin Endpoints Are Available?
- What Indeed Endpoints Are Available?
Plans & Billing
- How Much Does A Request Cost?
- What Is The Free Trial?
- How Do I Cancel A Plan?
- How Do I Get A Refund?
Overview
What Are The Structured Data APIs?
The ScrapeOps Structured Data APIs are a collection of APIs that allow you to access structured JSON data from popular websites through dedicated endpoints.
Unlike the Parser API where you send HTML, the Data APIs handle everything for you - fetching the page, bypassing anti-bot measures, and extracting the data. You simply make a GET request with the URL or identifier, and receive clean JSON data back.
How Are The Data APIs Different From The Parser API?
The key differences are:
| Feature | Structured Data APIs | Parser API |
|---|---|---|
| Input | URL or product identifier | Raw HTML you provide |
| Fetching | We handle it | You handle it |
| Proxy/Anti-bot | Built-in | You handle it |
| Output | Structured JSON | Structured JSON |
| Best For | Quick, all-in-one data access | When you have your own scraping infrastructure |
The Data APIs are ideal when you want structured data without managing your own scraping infrastructure. The Parser API is better when you already have HTML from your own scrapers.
Which Websites And Endpoints Are Supported?
We currently support:
- Amazon - Product details, product search
- eBay - Products, search, categories, stores, feedback
- Walmart - Products, search, categories, reviews, shops, browse
- Redfin - Sale/rent search, sale/rent details, building details, agents
- Indeed - Job search, job details, company information
We're continuously adding new endpoints based on user demand.
Getting Started & Usage
How To Use The Structured Data APIs?
To use the Structured Data APIs, you need an API key that you can obtain by signing up for a free account here.
You then make GET requests to the appropriate endpoint with your API key and the identifier or URL:
import requests
# Example: Get Amazon product data by ASIN
response = requests.get(
'https://data.scrapeops.io/v1/amazon/product',
params={
'api_key': 'YOUR_API_KEY',
'asin': 'B08WM3LMJF',
'domain': 'com'
}
)
print(response.json())
For more information, check out our Data APIs documentation.
What Data Is Returned?
Each endpoint returns comprehensive structured JSON data relevant to that page type. For example, the Amazon Product API returns:
- Product title, price, rating
- Images and specifications
- Availability and seller info
- Reviews and Q&A data
- Related products
Check the documentation for each endpoint to see the complete data schema.
Do I Need To Handle Proxies Or Anti-Bot Measures?
No! The Structured Data APIs handle all of this for you. Our system manages proxy rotation, anti-bot bypasses, and retries automatically. You simply make an API request and receive structured data back.
Supported Endpoints
What Amazon Endpoints Are Available?
- Amazon Product API - Get product details by ASIN or URL
- Amazon Product Search API - Search products by keyword
Supported Amazon domains: US, UK, CA, DE, FR, IT, ES, NL, PL, RO
What eBay Endpoints Are Available?
- eBay Product API - Get product/listing details
- eBay Search API - Search products by keyword
- eBay Category API - Browse category listings
- eBay Store API - Get seller store information
- eBay Feedback API - Get seller feedback data
What Walmart Endpoints Are Available?
- Walmart Product API - Get product details
- Walmart Product Search API - Search products
- Walmart Category API - Browse categories
- Walmart Review API - Get product reviews
- Walmart Shop API - Get shop information
- Walmart Browse API - Browse product listings
What Redfin Endpoints Are Available?
- Redfin Sale Search API - Search properties for sale
- Redfin Rent Search API - Search rental properties
- Redfin Sale Detail API - Get sale listing details
- Redfin Rent Detail API - Get rental listing details
- Redfin Building Detail API - Get building information
- Redfin State Search API - Search by state
- Redfin Agent Search API - Search real estate agents
- Redfin Agent Profile API - Get agent profile details
What Indeed Endpoints Are Available?
- Indeed Job Search API - Search job listings
- Indeed Job Detail API - Get job posting details
- Indeed Company Search API - Search companies
- Indeed Top Companies API - Get top-rated companies
- Indeed Company Snapshot API - Get company overview
- Indeed Company About API - Get company about info
- Indeed Company Reviews API - Get company reviews
- Indeed Company Jobs API - Get jobs at a company
Plans & Billing
How Much Does A Request Cost?
The Structured Data APIs use a credit-based system where you are only charged for successful responses.
The number of API credits used varies depending on the endpoint and the complexity of the data being retrieved. Check the documentation for each endpoint for specific credit costs.
Free Trial
ScrapeOps offers free API credits to test the Structured Data APIs. No credit card required.
Canceling A Plan
You can cancel your subscription at any time in your dashboard by going to the settings tab.
Getting A Refund
We offer a 7-day refund policy. If you are unhappy with the service, contact support and we will refund you right away.