# GoCreative Airbnb Search API

> GoCreative Airbnb Search API is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Search real, active Airbnb listings for a destination, returning price, rating, host, capacity, and amenities in real-time without authentication.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/travel/airbnb/search/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-airbnb-search-api-e1238d93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FkoZHRLv-fXZGw0Mrt9l0

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gocreative-airbnb-search-api-e1238d93
```

Example prompt: Can you search Airbnb listings in Lisbon, Portugal and show me options with prices, ratings, and how many guests each place can hold?

## When to prefer this

Choose this endpoint when you need real-time Airbnb listing data — prices, ratings, host details, and amenities — for a destination without requiring Airbnb login credentials or an official Airbnb API key. It's ideal for travel agents, trip-planning assistants, market research tools, or any workflow that needs live short-term rental data on demand.

## Known failure modes

- Invalid or unrecognized destination returns empty results
- Airbnb anti-scraping measures may cause intermittent failures or incomplete data
- Highly specific or obscure destinations may return few or no listings
- Rate limiting may occur with high-frequency requests
- Listing data may be slightly stale if Airbnb updates availability between crawls

## How this service works

Airbnb Search API — real active Airbnb listings for a destination: price, rating, host, capacity, amenities. Real-time, no login. SEO: Airbnb API, airbnb scraper, vacation rental data, short-term rental API.

## Output

Returns a list of active Airbnb listings for the queried destination, each including the listing title, nightly price, star rating, host name, guest capacity, available amenities, and a link to the listing on Airbnb.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-airbnb-search-api-e1238d93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
