example-data.com

properties

properties

Browse 200 properties records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

Asheville Villa

villa · Asheville · $786.38/night · ★ 4.1 (1093)

265 George Street

Port Ramiroburgh Villa

villa · Port Ramiroburgh · $524.9/night · ★ 3.7 (14)

4740 Connie Station

Portland Cabin

cabin · Portland · $659.37/night · ★ 2.8 (1310)

6376 N Oak Street

Rohnert Park Apartment

apartment · Rohnert Park · $822.7/night · ★ 2.6 (986)

982 E 6th Avenue

North Maeganside Villa

villa · North Maeganside · $133.25/night · ★ 3.6 (198)

76735 Carrie Skyway

Elizabeth House

house · Elizabeth · $1173.48/night · ★ 3.4 (973)

60027 Goyette Camp

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/properties?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/properties?limit=25"
);
const { data, meta } = await res.json();
import type { Propertie, ListEnvelope } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Propertie>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "name": "Asheville Villa",
      "slug": "asheville-villa-1",
      "type": "villa",
      "countryAlpha2": "CN",
      "city": "Asheville",
      "address": "265 George Street",
      "latitude": 8.16773,
      "longitude": -78.851336,
      "bedrooms": 3,
      "bathrooms": 2,
      "maxGuests": 8,
      "pricePerNight": 786.38,
      "currency": "GBP",
      "rating": 4.1,
      "ratingCount": 1093,
      "hostUserId": 30,
      "createdAt": "2025-06-19T22:09:24.110Z",
      "updatedAt": "2026-01-01T16:46:13.640Z"
    },
    {
      "id": 2,
      "name": "Port Ramiroburgh Villa",
      "slug": "port-ramiroburgh-villa-2",
      "type": "villa",
      "countryAlpha2": "ZA",
      "city": "Port Ramiroburgh",
      "address": "4740 Connie Station",
      "latitude": -52.458307,
      "longitude": -103.758107,
      "bedrooms": 6,
      "bathrooms": 2.5,
      "maxGuests": 6,
      "pricePerNight": 524.9,
      "currency": "SGD",
      "rating": 3.7,
      "ratingCount": 14,
      "hostUserId": 40,
      "createdAt": "2025-10-10T09:38:17.845Z",
      "updatedAt": "2026-03-03T18:40:39.424Z"
    },
    {
      "id": 3,
      "name": "Portland Cabin",
      "slug": "portland-cabin-3",
      "type": "cabin",
      "countryAlpha2": "PL",
      "city": "Portland",
      "address": "6376 N Oak Street",
      "latitude": -0.198966,
      "longitude": 137.062324,
      "bedrooms": 3,
      "bathrooms": 1.5,
      "maxGuests": 1,
      "pricePerNight": 659.37,
      "currency": "SGD",
      "rating": 2.8,
      "ratingCount": 1310,
      "hostUserId": 139,
      "createdAt": "2024-11-28T16:36:17.147Z",
      "updatedAt": "2026-03-09T22:09:04.022Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 200,
    "totalPages": 8
  },
  "links": {
    "self": "/api/v1/properties?page=1",
    "first": "/api/v1/properties?page=1",
    "last": "/api/v1/properties?page=8",
    "next": "/api/v1/properties?page=2",
    "prev": null
  }
}

View full response →

Draftbit