Data Feeds & API

For AI agents, search engines, and partner integrations

Quick start: organization.json lists all available feeds. openapi.json provides full API documentation.

Search API

Query properties with filters. Returns JSON with matching listings.

GET https://maymonthomes.com/api/search?city=atlanta&beds=3&maxRent=2500&petFriendly=true

Parameters

ParameterTypeDescription
citystringFilter by city name or slug
statestringFilter by state (e.g., GA, TX)
marketstringFilter by market name or slug
bedsstringExact bedroom count. Single value or comma list (e.g. 2 or 2,3); 5plus means 5 or more
bathsstringBathroom bucket: 2 matches 2 to 2.99, 4 matches 4 or more. Single value or comma list
minRentintegerMinimum monthly rent in USD
maxRentintegerMaximum monthly rent in USD
petFriendlybooleanOnly pet-friendly homes
availableNowbooleanOnly currently available homes
availableBeforedateAvailable before date (YYYY-MM-DD)
availableAfterdateAvailable after date (YYYY-MM-DD)

Example Response

{
  "meta": {
    "query": { "city": "atlanta", "beds": 3, "maxRent": 2500 },
    "count": 42,
    "generated": "2026-06-10T12:00:00Z"
  },
  "results": [
    { "id": "sfr:12345", "url": "...", "address": {...}, ... }
  ]
}

Single Property Lookup

Get full details for a specific property by its ID.

GET https://maymonthomes.com/api/feed/properties/12345

Example Listing Object

{
  "id": "sfr:12345",
  "url": "https://maymontrentals.com/properties/12345",
  "address": {
    "street": "123 Main Street",
    "city": "Atlanta",
    "state": "GA",
    "zip": "30301",
    "country": "US"
  },
  "specs": {
    "beds": 3,
    "baths": 2,
    "sqft": 1850,
    "propertyType": "single-family"
  },
  "rent": {
    "amount": 2100,
    "currency": "USD"
  },
  "availability": {
    "status": "available",
    "date": "2026-06-15"
  },
  "petFriendly": true,
  "selfTourAvailable": true
}

Available Feeds

Properties Feed

All rental property listings with full details

Single Property

Get details for a specific property by ID

JSON

Organization

Company information and feed directory

Markets

Geographic markets with rent statistics

Cities

Cities with listing counts and rent ranges

Neighborhoods

Neighborhood-level inventory data

Help & FAQ

Knowledge base with common questions

OpenAPI Spec

Full API documentation (OpenAPI 3.1)

Data Format

Update Frequency

Related