Developers
Build on Landonova.
APIs, SDKs, webhooks, and a sandbox environment for teams building against our platform.
API documentation
REST and GraphQL references for the Landonova platform APIs.
SDKs
Official SDKs for TypeScript, Python, Java, and Go.
Webhooks
Signed webhooks for listing, transaction, and verification events.
Sandbox
An isolated environment to build and test against representative data.
Changelog
Every API and SDK change, with semantic versioning and migration notes.
Status
Live service status and historical incident reports.
Quick start
A first request in under a minute.
Authenticate with a bearer token, target the sandbox base URL, and stream results back to your application.
Get an API key# Authenticate
curl https://api.sandbox.landonova.com/v1/listings \
-H "Authorization: Bearer $LANDONOVA_API_KEY" \
-H "Accept: application/json"
# → 200 OK
{
"data": [
{ "id": "prop_...", "city": "Dubai", "verified": true }
]
}