Hotel reviews — a hotel's guest reviews by property token: rating, date, text, per-aspect
Hotel reviews — a hotel's guest reviews by property token: rating, date, text, per-aspect subratings, highlights & the owner's reply, with category filter & paging.
20000 (raw units)
price
12
calls / 30d
8
unique payers
2026-09-17
updated
Provider
hotels.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x28410EaC7393dba041cd5a92eEfe7a8E834310bb",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x28410EaC7393dba041cd5a92eEfe7a8E834310bb",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x28410EaC7393dba041cd5a92eEfe7a8E834310bb",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "travel",
"info": {
"input": {
"method": "GET",
"queryParams": {
"hl": "en",
"property_token": "ChkI0Nqb_63cnPoTGg0vZy8xMWJ4ZjNoMXloEAE"
},
"type": "http"
},
"output": {
"example": {
"next_page_token": "CjEIARIpCgoAP7_LACda____EhCB3gky7h3XYNgvXm4AAAAAGgn92PoCYUlVH7AYACIA:10",
"property_token": "ChkI0Nqb_63cnPoTGg0vZy8xMWJ4ZjNoMXloEAE",
"queried_at": "2026-07-25T12:00:00Z",
"reviews": [
{
"best_rating": 5,
"date": "4 months ago",
"hotel_highlights": [
"Romantic"
],
"rating": 4,
"snippet": "What a beautiful place to stay! The location is perfect. The breakfast buffet was amazing — huge and full of variety. The pool area is absolutely beautiful and a perfect spot to unwind.",
"source": "Google",
"subratings": {
"location": 5,
"rooms": 4,
"service": 4
},
"user": {
"link": "https://www.google.com/maps/contrib/100815052880274933640?hl=en",
"name": "Ramandeep kaur"
}
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"hl": {
"default": "en",
"description": "Language code for the reviews",
"maxLength": 5,
"type": "string"
},
"property_token": {
"description": "Property token from a /hotels/search result",
"minLength": 1,
"type": "string"
}
},
"required": [
"property_token"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"category_token": {
"description": "Echoed when the reviews were narrowed to one theme",
"type": "string"
},
"next_page_token": {
"description": "Pass back as next_page_token for the next page",
"type": "string"
},
"property_token": {
"type": "string"
},
"queried_at": {
"description": "Time the lookup ran (UTC)",
"format": "date-time",
"type": "string"
},
"reviews": {
"items": {
"properties": {
"attributes": {
"items": {
"properties": {
"name": {
"type": "string"
},
"snippet": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"best_rating": {
"description": "The rating scale's maximum",
"type": "integer"
},
"date": {
"type": "string"
},
"hotel_highlights": {
"items": {
"type": "string"
},
"type": "array"
},
"rating": {
"type": "integer"
},
"response": {
"description": "The property's reply",
"properties": {
"date": {
"type": "string"
},
"snippet": {
"type": "string"
}
},
"type": "object"
},
"snippet": {
"description": "The review text",
"type": "string"
},
"source": {
"type": "string"
},
"source_icon": {
"type": "string"
},
"subratings": {
"properties": {
"location": {
"type": "integer"
},
"rooms": {
"type": "integer"
},
"service": {
"type": "integer"
}
},
"type": "object"
},
"user": {
"properties": {
"link": {
"type": "string"
},
"name": {
"type": "string"
},
"thumbnail": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"type": "array"
},
"source_number": {
"description": "Echoed when the reviews were narrowed to one third-party site",
"type": "integer"
}
},
"required": [
"queried_at",
"property_token",
"reviews"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"hotels",
"hotel-reviews",
"travel",
"lodging",
"accommodation",
"guest-reviews",
"ratings",
"reviews",
"booking",
"hospitality"
]
}
}Use it
curl
curl "https://hotels.use.x402atlas.com/reviews" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://hotels.use.x402atlas.com/reviews");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://hotels.use.x402atlas.com/reviews")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1368.json, and this resource appears in /discovery/resources and /discovery/search.