Skip to main content

Get Started with the Propexo API

Go from zero to your first API call in under 5 minutes. No PMS credentials required — our sandbox has realistic test data ready to go.

Three steps to your first API call

No PMS credentials required. Use sandbox test keys to explore the full API.

1

Create an account

Sign up for a free Propexo developer account. No credit card required. You'll get immediate access to the sandbox environment with test API keys pre-configured.

2

Get your API keys

Navigate to the API Keys section of your dashboard. Copy your sandbox test key — it starts with px_test_ and works against realistic mock data. Switch to px_live_ when you're ready for production.

3

Make your first request

Use cURL, Postman, or one of our SDKs to call the API. Realistic test data is pre-loaded — residents, leases, units, and more are ready to query immediately.

# List residents from the sandbox

curl -X GET https://api.propexo.com/v1/residents \
  -H "Authorization: Bearer px_test_..." \
  -H "Content-Type: application/json"

That's it. The sandbox returns realistic mock data in the same format as production, so you can build and test your integration with confidence.

What's included in the sandbox

Realistic Mock Data

Pre-seeded residents, leases, units, charges, and payments that mirror production formats.

Webhook Testing

Trigger simulated webhook events to test your event handler without waiting for real data changes.

Error Simulation

Trigger rate limits, auth errors, and network failures to test your error handling logic.

Ready to start building?