A purpose-built API for AI agents and booking systems. Real-time short-term rental pricing powered by college event calendars, spring break surge detection, and live market comps.
Built from the ground up for programmatic use — structured responses, machine-readable fields, no parsing required.
Exact home game dates for every Power 4 team — SEC, Big Ten, Big 12, ACC. Confirmed game-day detection with ±1 day flex buffer for Friday night games.
60+ teamsMove-in week (+20%), family weekend (+15%), home game Saturday (+18%). Auto-applied when a property is within 10 miles of a tracked campus.
310+ universities+25% boost for properties in vacation hotspots during peak spring break season. Scottsdale, Fort Lauderdale, Cabo, Outer Banks, Lake of the Ozarks, and 20 more.
26 destinationsBase pricing from RentCast AVM with up to 15 comparable properties. Confidence scoring — high/medium/low — so your agent knows when to show the price vs. ask for review.
RentCast poweredreasons_for_agents is a pre-formatted string you inject directly into a homeowner message. No reformatting, no parsing — just use it.
Price up to 7 dates in one call. Returns a sorted list with peak_date and peak_nightly — perfect for booking window analysis.
POST your email to /create-api-key. Instant — no approval process.
Choose a pack. Pay once via Stripe. Credits appear in seconds via webhook.
POST an address + date. Get back nightly price, boost breakdown, and a ready-to-use agent summary.
Use reasons_for_agents to explain the price. Pre-formatted — no work needed.
Buy credits once, use them whenever. Credits never expire.
No waiting. No approval. Enter your email, get your key, buy credits, start calling the API.
Register a new account or retrieve your existing API key by email.
| Field | Type | Required | Description |
|---|---|---|---|
| string | required | Your email address |
curl -X POST https://api.mikiware.com/create-api-key \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com"}' { "api_key": "pn_7a76e32486b5", "balance_usd": 0.0, "message": "New API key created." }
Check your current credit balance, total spend, and calls remaining.
curl https://api.mikiware.com/balance \ -H "X-API-Key: pn_7a76e32486b5" { "balance_usd": 9.75, "total_spent": 0.25, "total_calls": 1, "calls_remaining": 39 }
Generate a Stripe Checkout URL. Credits appear automatically within seconds of payment.
| Field | Type | Required | Description |
|---|---|---|---|
| string | required | Account email | |
| pack | string | required | starter | pro | studio | agency |
curl -X POST https://api.mikiware.com/buy-credits \ -d '{"email": "you@example.com", "pack": "pro"}' { "checkout_url": "https://checkout.stripe.com/...", "api_key": "pn_7a76e32486b5" }
Get an AI-adjusted rental price for a single property on a single date.
💳 $0.19 per call| Field | Type | Description | |
|---|---|---|---|
| address | string | required | Full US property address |
| pricing_date | string | optional | YYYY-MM-DD. Defaults to today. |
| bedrooms | int | optional | Number of bedrooms |
| bathrooms | float | optional | Number of bathrooms |
| latitude | float | optional | Skip geocoding — supply coords directly |
| longitude | float | optional | Skip geocoding — supply coords directly |
curl -X POST https://api.mikiware.com/rental/pricing \ -H "X-API-Key: pn_7a76e32486b5" \ -d '{"address":"3171 Ocean Front Walk, San Diego, CA 92109", "bedrooms":4, "pricing_date":"2026-10-10"}' { "adjusted_pricing": { "suggested_nightly_price": 289, "suggested_monthly_price": 8959, "total_boost_percent": 23.0, "active_events": ["home_game", "family_weekend"], "confidence_label": "high", "reasons_for_agents": "$289/night (+23% above $235 baseline)..." }, "remaining_balance": 9.75 }
Price the same property across up to 7 dates in one call. RentCast is queried once. Returns sorted results plus peak_date and peak_nightly.
curl -X POST https://api.mikiware.com/rental/pricing/batch \ -H "X-API-Key: pn_7a76e32486b5" \ -d '{"address":"7700 E McCormick Pkwy Scottsdale AZ", "dates":["2026-03-07","2026-03-14","2026-10-10"]}' { "peak_date": "2026-03-14", "peak_nightly": 312, "results": [ ... ] }
Preview which event windows are active on a given date. Free — no credits deducted.
curl "https://api.mikiware.com/events/preview?pricing_date=2026-10-10" \ -H "X-API-Key: pn_7a76e32486b5" { "is_family_weekend": true, "is_spring_break_season": false }
List universities within radius_miles of a coordinate. Free — no credits deducted.
curl "https://api.mikiware.com/universities/nearby?lat=33.42&lon=-111.93" \ -H "X-API-Key: pn_7a76e32486b5" { "count": 2, "universities": [{ "name": "Arizona State University", "conference": "Big 12", "distance_miles": 7.2 }] }