Build custom property management experiences with RentPager's REST API. Connect to ChatGPT, Claude, Zapier, or your own applications. Your data, your interface, your way.
Every feature in RentPager is accessible via our REST API. Manage properties, tenants, payments, and maintenance programmatically.
// Get all properties with renters
const response = await fetch(
'https://rentpager.com/api/ai/properties',
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
const { properties } = await response.json();
// Create a maintenance ticket
await fetch('https://rentpager.com/api/ai/maintenance', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
property_id: 'prop_123',
title: 'Leaky faucet in kitchen',
priority: 'medium'
})
});Connect ChatGPT, Claude, or any AI assistant to RentPager. Ask questions in natural language and get instant answers.
Import our OpenAPI spec into ChatGPT custom actions. Ask "Who's behind on rent?" and get real-time data from your portfolio.
Setup guideUse Claude's Model Context Protocol to give Claude direct access to your properties. Works in Claude Desktop and API.
Setup guideStandard OpenAPI spec compatible with any tool that supports it. Postman, Insomnia, custom code generators — all work out of the box.
View specFrom simple automations to full custom interfaces
Build a white-label property management app for your brand using RentPager as the backend.
Connect to 5,000+ apps. Auto-create tickets from emails, sync to spreadsheets, send Slack alerts.
Create an AI assistant that manages your properties autonomously with ChatGPT or Claude.
Build a custom listings page for your properties that pulls live availability from RentPager.
Generate weekly payment summaries, maintenance reports, and portfolio analytics automatically.
Connect RentPager to your existing property management workflow and internal tools.
Full CRUD operations for all RentPager resources
/api/ai/propertiesList all properties/api/ai/rentersList all renters with roles/api/ai/rentersCreate a new renter/api/ai/paymentsList payments (filterable)/api/ai/paymentsRecord a payment/api/ai/maintenanceList maintenance requests/api/ai/maintenanceCreate a maintenance ticket/api/ai/vendorsList vendors/api/ai/vendor-dispatchesDispatch a vendor/api/ai/analytics/cash-flowCash flow projectionsYour data is protected with industry-standard security practices. We take data protection seriously.
Create scoped API keys from your RentPager dashboard. Each key can be limited to specific resources and operations.
Go to Developer SettingsCreate a free RentPager account and get your API key in minutes.