PINGDOM_CHECK

Web Scraping Copilot is live. Build Scrapy spiders 3× faster, free in VS Code.

Install Now
Data Services
Pricing
Login
Try Zyte APIContact Sales
  • Unblocking and Extraction

    Zyte API

    The ultimate API for web scraping. Avoid website bans and access a headless browser or AI Parsing

    Ban Handling

    Headless Browser

    AI Extraction

    Enterprise

    DocumentationSupport

    Hosting and Deployment

    Scrapy Cloud

    Run, monitor, and control your Scrapy spiders however you want to.

    AI-powered IDE Integration

    Web Scraping-Copilot

    The complete, production-ready spider workflow from AI-generated code to cloud deployment. All in VS Code.

  • Data Services
  • Pricing
  • Blog

    Learn

    Case Studies

    Webinars

    Videos

    White Papers

    Join our Community
    Introducing Web Scraping Copilot 1.0: AI-Accelerated web scraping inside VS
    Blog Post
    The seven habits of highly effective data teams
    Blog Post
  • Product and E-commerce

    From e-commerce and online marketplaces

    Data for AI

    Collect and structure web data to feed AI

    Job Posting

    From job boards and recruitment websites

    Real Estate

    From Listings portals and specialist websites

    News and Article

    From online publishers and news websites

    Search

    Search engine results page data (SERP)

    Social Media

    From social media platforms online

  • Meet Zyte

    Our story, people and values

    Contact us

    Get in touch

    Support

    Knowledge base and raise support tickets

    Terms and Policies

    Accept our terms and policies

    Open Source

    Our open source projects and contributions

    Web Data Compliance

    Guidelines and resources for compliant web data collection

    Join the team building the future of web data
    We're Hiring
    Trust Center
    Security, compliance & certifications
Login
Try Zyte APIContact Sales

Zyte Developers

Coding tools & hacks straight to your inbox

Become part of the community and receive a bi-weekly dosage of all things code.

Join us
    • Zyte Data
    • News & Articles
    • Search
    • Social Media
    • Product
    • Data for AI
    • Job Posting
    • Real Estate
    • Zyte API - Ban Handling
    • Zyte API - Headless Browser
    • Zyte API - AI Extraction
    • Web Scraping Copilot
    • Zyte API Enterprise
    • Scrapy Cloud
    • Solution Overview
    • Blog
    • Webinars
    • Case Studies
    • White Papers
    • Documentation
    • Web Scraping Maturity Self-Assesment
    • Web Data compliance
    • Meet Zyte
    • Jobs
    • Terms and Policies
    • Trust Center
    • Support
    • Contact us
    • Pricing
    • Do not sell
    • Cookie settings
    • Sign up
    • Talk to us
    • Cost estimator
Zyte API
|AI Extraction

Turn pages into structured data instantly, like magic

End the pain of parsing. Let AI understand the page and extract the data for you.

Try freeRead the docs
AI Extraction

The hidden cost of writing parsers

Death by DOM

Identifying and testing XPath or CSS selectors is slow and repetitive.

Error-prone

Fragile selectors break when site markup changes.

Slow to scale

Scraping dozens of sites means never-ending maintenance.

Try AI Extraction

Pick your AI superpower

Three ways to turn any web page into valuable data.

1. Broad

Instant extraction from any page

Just get the data. One parameter is all you need. "pageContent": true is your key to instantly extract the main content of any page. No selectors in sight, no HTML to clean up – just clean, slim-line content, ready for LLMs or any use case.

Read the docs
Request
1{
2  "httpResponseBody": true,
3  "pageContent": true,
4}
5
6def parse(self, response):
7  http_response_body: bytes = response.body
8  with open("http_response_body.html", "wb") as fp:
9    fp.write(http_response_body)
10    product = response.raw_api_response["product"]
11    yield product
12}
Response
1{
2  "headline": "Royal Victoria Infirmary",
3  "itemMain": "Hospital NHS hospital Royal Victoria Infirmary Queen Victoria Road, Newcastle Upon Tyne, Tyne and Wear, NE1 4LP (0191) 233 6161 Provided and run by: The Newcastle upon Tyne Hospitals NHS Foundation Trust Overview Latest inspection summary All inspection reports and timeline Registration details Map and contact details Get alerts when we inspect Give feedback on care at this service About your care...",
4  // ...,
5  "itemMainXPath": "//*[@id=\"main-content-wrapper\"]",
6  "metadata": {
7    "dateDownloaded":"2025-08-12T16:14:22Z"
8  }
9}
2. Specialist

Rich, content-specific schemas

Zyte API uses machine learning models to identify and return standard data schema from a range of specific data types such as Product, Article, Job Posting, Search Engine.

3. Magic

Conjure any field, on command

Our most powerful capability, custom attributes extraction, puts a scraping-tuned Large Language Model at your beck and call.

Extract mode icon

Extract mode

No more selectors. Use natural language to instruct Zyte API to find and return custom on-page data.

Example
1{
2  "pockets": {
3    "type": "integer",
4    "description": "What is the number of pockets in this garment?"
5  }
6}
Copy
Generate mode icon

Generate mode

Go beyond language-based extraction. Summarize, transform or translate captured data before it is even returned.

Example
1{
2  "datetime_posted": {
3    "type": "string",
4    "description": "the date when the article was created, in the following format: YYYY/MM/DD"
5  }
6}
Copy
Read the docs
See it in action

Add AI Extraction to your first request

Built to work the way you do

AI Extraction integrates seamlessly with your existing Zyte API workflows.

Plays well with Scrapy

Use AI Extraction directly inside your Scrapy spiders with no extra parsing logic — just one parameter in your request and the data arrives structured."

Domain-trained models

Specialized AI models for ecommerce products, articles, jobs, and search engine results ensure accuracy and efficiency.

Flexible schema

Get common fields by default, then customize the schema to fit your needs. Add or remove fields with either code or natural language prompts.

No-maintenance parsing

Forget fixing brittle selectors when sites change — our AI adapts automatically to evolving page structures.

Simple pricing that
scales with your needs

Explore transparent pricing designed to grow with your needs.

See our pricing plans

"Awards, five-star reviews and millions of happy customers"

The results are in: Zyte customers love our products. Check out these views and reviews on independent sites.

It just works

Zyte was able to offer the most simple and effective rotating proxy solution for us. It just works.

Aurélien Jemma

CEO at Liwango

Always there

Collaboration with Zyte has been easy and support was always there throughout our journey.

Ru Hickson

Data Engineer at Kinzen

5 lines of code

It was literally 5 lines of code to get started with Smart Proxy Manager and see crawling success.

Oskar Bruening

CTO at Peek

For successful business

Without Zyte Smart Proxy Manager our business is not successful.

Michael Raburn

Co-Founder of Bridge Below

Deploy in minutes

Quick to Integrate, Easy to Use.

Our headless browser power is easy to control using a simple API call.

See DocsTry Free

G2.com

Capterra.com

Proxyway.com

EWDCI logoMost loved workplace certificateZyte rewardISO 27001 iconG2 rewardG2 rewardG2 reward

© Zyte Group Limited 2026
1from base64 import b64decode
2
3import requests
4
5api_response = requests.post(
6  "https://api.zyte.com/v1/extract",
7  auth=("YOUR_ZYTE_API_KEY", ""),
8  json={
9    "url": "https://toscrape.com",
10    "httpResponseBody": True,
11  },
12)
13body: bytes = b64decode(api_response.json()["httpResponseBody"])1
Copy