Skip to main content
AI Studio  add-on for Spider.
Travel
marriott.com Verified

Marriott Scraper

Extract hotel details, room rates, loyalty rewards, and property amenities from Marriott International properties worldwide. Built on spider-browser .

Get started Docs
target
marriott.com
success rate
99.9%
latency
~4ms
POST /fetch/marriott.com/
return_format
curl -X POST https://api.spider.cloud/fetch/marriott.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://marriott.com/",
  "status": 200,
  "data": {
    "hotel_name": "string",
    "room_rate": "string",
    "star_rating": "string",
    "address": "string",
    "amenities": "string",
    "bonvoy_points": "string",
    "room_type": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from marriott.com with a single POST. AI-resolved selectors, cached on the first call.

marriott-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
  stealth: 2,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.marriott.com/search/default.mi?roomCount=1&numAdultsPerRoom=2&destination=New+York+City");
await page.content(12000);

const data = await page.extractFields({
  name: "h2.hotel-name",
  rate: ".rate-value .t-price",
  address: ".hotel-address .l-address",
  rating: ".m-rating .rating-number",
  image: { selector: ".hero-image img", attribute: "src" },
  rewards: ".bonvoy-points",
});

console.log(data);
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Hotel nameRoom rateStar ratingAddressAmenitiesBonvoy pointsRoom type
Pricing

Dynamic rate capture

Session-aware scraping captures pricing on marriott.com that changes per visitor.

Rendering

Complex SPA handling

Full browser rendering for React/Next.js booking interfaces and search results.

Scale

Destination coverage

Scrape listings across thousands of destinations and date ranges concurrently.

Related

More Travel scrapers.

Start

Start scraping marriott.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.