Fake Airbnb Listing

⚡ Generators 🌭🌭 Medium 2,783 calls

The Fake Airbnb Listing API generates one short-term rental listing per call. Includes title, location-specific description, host note, sleeps/bedrooms/bathrooms, amenities, three eccentric quirks ("The owl considers itself a roommate"), rating, review count, and price per night.

Try It — No Seriously

Fake Airbnb Listing.exe
_ ×
City or area.

Parameters

Parameter Type Required Default Description
location string Required City or area.

Examples

curl "https://api.stupidapis.com/fake-airbnb-listing/list?location=Lisbon"
import requests

response = requests.get("https://api.stupidapis.com/fake-airbnb-listing/list", params={"location": "Lisbon"})
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-airbnb-listing/list?location=Lisbon");
const data = await response.json();

Response Schema

Field Type Description
title string Listing title
location string Echoed back
description string Property description
host_note string Note from host
sleeps number Max guests
bedrooms number Bedroom count
bathrooms number Bathroom count
amenities string[] Amenities
quirks string[] Eccentricities
rating number Star rating
reviews number Review count
price_per_night string Nightly rate

Example Response

{
  "title": "Charming Studio with Heart",
  "location": "Lisbon",
  "description": "A welcoming home in Lisbon. South-facing. Renovated in 2019. Walking distance to a market.",
  "host_note": "I have lived here for nineteen years and I am happy to share it with you, mostly.",
  "sleeps": 4,
  "bedrooms": 2,
  "bathrooms": 1,
  "amenities": [
    "wifi",
    "kitchen",
    "self check-in",
    "workspace",
    "air conditioning"
  ],
  "quirks": [
    "The owl considers itself a roommate",
    "Wifi is unreliable but the wifi is unreliable for everyone",
    "A small ghost; nothing serious"
  ],
  "rating": 4.92,
  "reviews": 142,
  "price_per_night": "$184"
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidapis.com/fake-airbnb-listing/mcp
POST https://api.stupidapis.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy