airbnb13

airbnb13

3.5

The Airbnb13 MCP server is a tool for finding available accommodations on Airbnb using location-based queries.

The Airbnb13 MCP server is a powerful tool designed to help users find available accommodations on Airbnb. By utilizing geographical coordinates or specific location queries, this server enables users to search for available rooms, check availability, and view pricing information. With its RESTful architecture and JSON data format, Airbnb13 provides a seamless experience for accessing Airbnb listings data.

Features

  • Location-Based Search: Find rooms on Airbnb by entering geo coordinates or a specific location name (e.g., 'Paris'). This feature allows users to search for accommodations between specified dates and view availability and pricing details.
  • Autocomplete Functionality: Simplify the search process with an autocomplete feature that helps users find location names quickly and efficiently.
  • Comprehensive Listings Data: Access detailed Airbnb listings data, including room availability, prices, and other relevant information for all locations.

MCP Tools

  • Autocomplete: This tool helps find locations by a query string, simplifying the process of identifying specific destinations.
  • Search by Location: Search for available rooms at a specific location using location names and date ranges.
  • Search by GEO Coordinates: Find accommodations within a defined rectangular area using geographical coordinates for the northeastern and southwestern corners.
  • Get Listing Details: Retrieve detailed information about specific Airbnb listings, including availability and prices for a selected time interval.
  • Property Calendar: Access availability information and pricing for a property over a specified period, allowing users to plan their stay efficiently.

Usage with Different Platforms

python

python
import requests

url = 'https://api.airbnb13.com/search'
params = {
    'location': 'Paris',
    'check_in': '2023-12-01',
    'check_out': '2023-12-10',
    'guests': 2
}
response = requests.get(url, params=params)
print(response.json())

javascript

javascript
fetch('https://api.airbnb13.com/search?location=Paris&check_in=2023-12-01&check_out=2023-12-10&guests=2')
  .then(response => response.json())
  .then(data => console.log(data));