# AgentBodega Rental Listing Search

> AgentBodega Rental Listing Search is a paid API for AI agents from agentbodega.store, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Searches rental property listings by area, returning apartments/homes with price ranges, bedroom/bathroom counts, and location details.

## Facts

- Endpoint: POST https://agentbodega.store/api/public-data/rental-listing-search
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-rental-listing-search-8348e773
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OxrQusVIIdanqRxfddwEo

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 agentbodega-rental-listing-search-8348e773 -d '<json body>'
```

Example prompt: Can you search for 2-bedroom apartments for rent in San Francisco priced between $2000 and $4000 a month, and show me up to 10 results sorted by price?

## When to prefer this

Choose this endpoint when an AI agent needs to retrieve real rental listing data for a specific geographic area — particularly when filtering by price range, bedroom/bathroom count, or ordering results. It is well-suited for residential real estate research tasks where the agent needs structured listing data (price ranges, addresses) rather than scraped or unstructured web content.

## Known failure modes

- Missing or invalid resourceId returns an error or empty results
- Area not covered by the data source returns no listings
- Invalid filter combinations (e.g. minPrice > maxPrice) may return empty results or an error
- Rate limiting or payment failure (x402) blocks the request
- Non-existent searchSlug returns empty results array

## How this service works

Small x402-payable utility APIs for agents: endpoint inspection, launch checks, and hosted artifacts.

## Output

Returns a JSON object with the query context (area name, resource ID, search slug), a success flag, and an array of rental listings each containing the property title, street address, city, state, and min/max rent prices.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "resourceId",
       "type": "string",
       "required": true
      },
      {
       "name": "searchSlug",
       "type": "string",
       "required": false
      },
      {
       "name": "maxPrice",
       "type": "integer",
       "required": false
      },
      {
       "name": "minPrice",
       "type": "integer",
       "required": false
      },
      {
       "name": "bedrooms",
       "type": "string",
       "required": false
      },
      {
       "name": "bathrooms",
       "type": "string",
       "required": false
      },
      {
       "name": "orderBy",
       "type": "string",
       "required": false
      },
      {
       "name": "limit",
       "type": "integer",
       "required": false
      },
      {
       "name": "proxiesSx",
       "type": "boolean | object",
       "required": false
      }
     ],
     "required": [
      "resourceId"
     ],
     "fieldCount": 9,
     "contentType": "application/json",
     "optionalPreview": [
      "searchSlug",
      "maxPrice",
      "minPrice",
      "bedrooms",
      "bathrooms",
      "orderBy",
      "limit",
      "proxiesSx"
     ],
     "omittedFieldCount": 0
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tool": {
   "id": "rental-listing-search",
   "name": "Rental Listing Search",
   "department": "Public Data"
  },
  "query": {
   "area_name": "San Francisco",
   "resource_id": "san-francisco-ca",
   "search_slug": "apartments-for-rent"
  },
  "results": [
   {
    "city": "San Francisco",
    "state": "CA",
    "title": "NEMA",
    "street": "8 10th St",
    "rent_max": 7925,
    "rent_min": 3750
   }
  ],
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-rental-listing-search-8348e773/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbodega.store](https://www.zero.xyz/host/agentbodega.store/llms.txt)
