Hotel photos — a hotel's photo library by property token, grouped into themed sections wit
Hotel photos — a hotel's photo library by property token, grouped into themed sections with full-size URLs, thumbnails, dimensions & paging.
20000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-15
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": {
"property_token": "ChkI0Nqb_63cnPoTGg0vZy8xMWJ4ZjNoMXloEAE"
},
"type": "http"
},
"output": {
"example": {
"property_token": "ChkI0Nqb_63cnPoTGg0vZy8xMWJ4ZjNoMXloEAE",
"queried_at": "2026-07-25T12:00:00Z",
"sections": [
{
"photos": [
{
"height": 3808,
"photo_url": "https://lh3.googleusercontent.com/gps-cs-s/AHRPTWlmfVGuxcjg0adrdBKKM7-nVLzU-WTpVO3W_5piuLWb5QnRaDzSEGz0epxpA6li2WTSuKL3qJteiEZRP8rXMOIJA5m30YWVcvETuiPzlz1yCw9GC4ygfY3c8G74_28mXNu3l6j0-w_fiiU=s5059",
"posted_on": "2025-08-19",
"source": "Owner Submitted",
"source_url": "https://maps.google.com/maps/contrib/117464852068129788026",
"thumbnail_url": "https://lh3.googleusercontent.com/gps-cs-s/AHRPTWlmfVGuxcjg0adrdBKKM7-nVLzU-WTpVO3W_5piuLWb5QnRaDzSEGz0epxpA6li2WTSuKL3qJteiEZRP8rXMOIJA5m30YWVcvETuiPzlz1yCw9GC4ygfY3c8G74_28mXNu3l6j0-w_fiiU=w253-h190-k-no",
"width": 5059
}
],
"title": "At a glance",
"total": 201
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"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": {
"property_token": {
"type": "string"
},
"queried_at": {
"description": "Time the lookup ran (UTC)",
"format": "date-time",
"type": "string"
},
"sections": {
"items": {
"properties": {
"next_page_token": {
"description": "Pass back as next_page_token to page this section",
"type": "string"
},
"photos": {
"items": {
"properties": {
"height": {
"type": "integer"
},
"photo_url": {
"type": "string"
},
"posted_on": {
"type": "string"
},
"source": {
"type": "string"
},
"source_url": {
"type": "string"
},
"thumbnail_url": {
"type": "string"
},
"width": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"title": {
"description": "Theme of the section",
"type": "string"
},
"total": {
"description": "Photos available in this section",
"type": "integer"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"queried_at",
"property_token",
"sections"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"hotels",
"hotel-photos",
"travel",
"lodging",
"accommodation",
"images",
"photos",
"booking",
"rooms",
"hospitality"
]
}
}Use it
curl
curl "https://hotels.use.x402atlas.com/photos" # -> 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/photos");
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/photos")
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/1371.json, and this resource appears in /discovery/resources and /discovery/search.