List Properties

Retrieve all properties from your connected PMS accounts in a single API call.

GET/v1/properties

List all properties in the account

Query Parameters

limitintegerDefault: 50

Max results per page

offsetintegerDefault: 0

Pagination offset

statusstring

Filter by status: ACTIVE, INACTIVE, DRAFT

Request

curl https://api.repull.dev/v1/properties \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -H "X-Workspace-Id: YOUR_WORKSPACE_ID"

Response

{
  "data": [
    {
      "id": "123",
      "name": "Oceanview Villa",
      "publicName": "Stunning Oceanview Villa",
      "status": "ACTIVE",
      "address": {
        "line1": "123 Beach Rd",
        "city": "Malibu",
        "country": "US"
      },
      "location": { "latitude": 34.025, "longitude": -118.779 },
      "currency": "USD",
      "createdAt": "2026-01-15T10:00:00Z"
    }
  ],
  "pagination": { "total": 5, "limit": 50, "offset": 0, "hasMore": false }
}
AI