Docs/API Reference/Properties

Get a single property by ID

Properties · GET /v1/properties/:id

Get a single property by ID

GET/v1/properties/:id

Request

curl https://api.repull.dev/v1/properties/123 \
  -H "Authorization: Bearer $REPULL_API_KEY"

Response

{
  "id": "123",
  "name": "Example",
  "address": "Example text",
  "city": "Example text",
  "latitude": "Example text",
  "longitude": "Example text",
  "currency": "USD",
  "status": "active",
  "lifecycleStatus": "live",
  "createdAt": "2026-06-01T12:00:00.000Z"
}

Captured from a real response. Regenerated on every release, and CI fails if this shape stops matching the API.

AI