# Port66 Luxury Listings Search

> Port66 Luxury Listings Search is a paid API for AI agents from port66.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Search and browse authenticated luxury fashion, watches, and rare collectibles listings on Port66 with filtering by brand, category, price, and condition

## Facts

- Endpoint: GET https://port66.xyz/api/agent/v1/listings
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/port66-luxury-listings-search-e3093726
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5QoPglKWKLTtrjreyHiIi

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 port66-luxury-listings-search-e3093726
```

Example prompt: Can you search Port66 for authenticated Rolex watches under $15,000, sorted by price ascending, and show me the first 10 listings in new or like-new condition?

## When to prefer this

Use this endpoint when you need to search or browse authenticated luxury goods — fashion, watches, or collectibles — on Port66's marketplace. Prefer this over generic e-commerce search APIs when blockchain-anchored authentication and verification level of luxury items matters, or when you specifically want Port66's curated inventory of rare and high-value goods.

## Known failure modes

- Invalid or missing required query parameters return empty results
- Page number exceeding totalPages returns empty listings array
- Unsupported sortBy field may cause unexpected ordering or error
- maxPrice lower than minPrice may return zero results
- Payment failure (x402) blocks access to the endpoint
- Rate limiting if too many calls are made rapidly

## How this service works

Authenticated luxury fashion, watches, and rare collectibles.

## Output

Returns a paginated list of luxury listings, each with ID, title, brand, category, price in USD, condition, seller info, image URL, listing URL, slug, size, listing type, blockchain anchor status on Base, and verification level — plus pagination metadata (page, limit, total, totalPages).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "description": "Free-text search"
  },
  "page": {
   "type": "integer",
   "description": "Page number (default 1)"
  },
  "limit": {
   "type": "integer",
   "description": "Results per page (max 50)"
  },
  "sortBy": {
   "type": "string",
   "description": "Sort field (e.g. price, listedAt)"
  },
  "maxPrice": {
   "type": "number",
   "description": "Maximum price (USD)"
  },
  "minPrice": {
   "type": "number",
   "description": "Minimum price (USD)"
  },
  "brandName": {
   "type": "string",
   "description": "Filter by brand name"
  },
  "condition": {
   "enum": [
    "DEADSTOCK",
    "MINT",
    "EXCELLENT",
    "VERY_GOOD",
    "GOOD",
    "FAIR"
   ],
   "type": "string",
   "description": "Item condition"
  },
  "sortOrder": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "categoryName": {
   "type": "string",
   "description": "Filter by category name"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "meta": {
   "type": "object",
   "properties": {
    "page": {
     "type": "integer"
    },
    "limit": {
     "type": "integer"
    },
    "total": {
     "type": "integer"
    },
    "totalPages": {
     "type": "integer"
    }
   }
  },
  "listings": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "id": {
      "type": "string"
     },
     "url": {
      "type": "string"
     },
     "size": {
      "type": "string",
      "nullable": true
     },
     "slug": {
      "type": "string"
     },
     "brand": {
      "type": "string",
      "nullable": true
     },
     "image": {
      "type": "string",
      "nullable": true
     },
     "price": {
      "type": "number",
      "nullable": true
     },
     "title": {
      "type": "string"
     },
     "seller": {
      "type": "string",
      "nullable": true
     },
     "category": {
      "type": "string",
      "nullable": true
     },
     "currency": {
      "type": "string"
     },
     "listedAt": {
      "type": "string"
     },
     "condition": {
      "type": "string"
     },
     "listingType": {
      "type": "string"
     },
     "anchoredOnBase": {
      "type": "boolean"
     },
     "verificationLevel": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/port66-luxury-listings-search-e3093726/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from port66.xyz](https://www.zero.xyz/host/port66.xyz/llms.txt)
