Skip to main content

Documentation

Everything you need to build with Locus

Guides, API reference, and integration tutorials. From first listing to production deployment.

Quick Start — install & first call

$ npm install @locus/sdk

import Locus from "@locus/sdk";

const client = new Locus({ apiKey: process.env.LOCUS_API_KEY });

// Create a property listing
const property = await client.properties.create({
  address: "1240 Skyline Drive, Unit 42A",
  city: "San Francisco",
  state: "CA",
  bedrooms: 3,
  bathrooms: 3,
  monthlyRent: 4200,
});

logger.info(property.id); // "prop_abc123"

Base URL: https://api.locusprop.app/v1

DemoUI kit preview — content is fictional.