{
  "info": {
    "name": "Airbnb (não oficial) — mcp.ai",
    "description": "REST API for the Airbnb (não oficial) MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/airbnb",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "airbnb_buscar_hospedagens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/buscar/hospedagens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "buscar",
            "hospedagens"
          ]
        },
        "description": "Searches Airbnb stays by city or region and returns the listings with name, total price for the period (discounted when applicable), rating, review count, coordinates, badges such as 'Guest favorite' ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"location\": \"\",\n  \"country\": \"\",\n  \"check_in\": \"\",\n  \"check_out\": \"\",\n  \"adults\": 0,\n  \"children\": 0,\n  \"infants\": 0,\n  \"pets\": 0,\n  \"price_min\": 0,\n  \"price_max\": 0,\n  \"room_types\": \"\",\n  \"currency\": \"\",\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airbnb_detalhes_hospedagem",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/detalhes/hospedagem",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "detalhes",
            "hospedagem"
          ]
        },
        "description": "Opens an Airbnb listing by id (the 'id' field of a search result) and returns the name, the host's full description, every photo, the city, coordinates, rating, review count, bedrooms, beds, bathrooms",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"check_in\": \"\",\n  \"check_out\": \"\",\n  \"adults\": 0,\n  \"currency\": \"\",\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}