Integrate property finance into your platform. Get indicative rates, create applications, track status and receive real-time webhooks — all via our REST API.
The Glender API is a RESTful JSON API that lets brokers, lenders and technology partners programmatically access our property finance platform. Use it to fetch indicative rates, submit loan applications, check application status, query available lenders and register webhooks for real-time event notifications.
All API requests must be made over HTTPS to https://api.glender.io. Responses are returned in JSON format. The API follows standard HTTP status codes and includes detailed error messages.
Authenticate every request by including your API key in the Authorization header. API keys are issued per-organisation and can be managed from your Glender dashboard.
// Include your API key in every request
GET /v1/rates HTTP/1.1
Host: api.glender.io
Authorization: Bearer gl_live_sk_xxxxxxxxxxxxxxxxxxxx
Content-Type: application/json
Click an endpoint to expand its documentation and see example request/response payloads.
Official client libraries for JavaScript/TypeScript and Python. Both are thin wrappers around the REST API with full TypeScript/type hint support.
npm install @glender/sdk
// Usage
import { Glender } from '@glender/sdk';
const gl = new Glender('gl_live_sk_...');
const rates = await gl.rates.get({
loan_type: 'bridging',
loan_amount: 500000,
property_value: 750000
});
pip install glender
# Usage
from glender import Glender
gl = Glender("gl_live_sk_...")
rates = gl.rates.get(
loan_type="bridging",
loan_amount=500000,
property_value=750000
)
Rate limits are applied per API key. If you exceed the limit, requests return 429 Too Many Requests with a Retry-After header.
| Plan | Requests / min | Requests / day | Webhooks |
|---|---|---|---|
| Starter | 60 | 5,000 | 3 |
| Professional | 300 | 50,000 | 10 |
| Enterprise | 1,000 | Unlimited | Unlimited |
Request API access and our developer relations team will have you up and running within 24 hours. Sandbox environment included.