Build with the PropUp API
Integrate the power of PropUp's AI analysis into your own applications, workflows, and services.
Property Analysis API
Access our core AI engine to analyze properties by location and imagery, receiving structured data in return.
Market Data API
Retrieve real-time and historical market trends, demographics, and competitive analysis for any location.
Report Generation API
Programmatically generate and customize professional property reports and marketing materials.
example.js
// Example: Fetching property analysis
const propup = new PropUpClient({ apiKey: 'YOUR_API_KEY' });
const analysis = await propup.analysis.create({
location: { lat: 40.7128, lng: -74.0060 },
propertyType: 'residential',
images: ['image1.jpg', 'image2.jpg']
});
console.log(analysis.summary);