Get Started
Connect your system to RYNT — sync vehicle availability, receive bookings, and manage them, all through one API.
Introduction
The RYNT Partner API lets an external system — a rental agency or a whole platform — keep its fleet and bookings in lockstep with RYNT. It is a standard, versioned REST API: you send authenticated requests, RYNT sends signed webhooks back. One contract works for everyone; only your credentials and data differ.
With it you can:
- Enable / disable a vehicle and set manual blocks — availability updates on RYNT instantly.
- Receive real-time webhooks whenever a booking is created, approved, rejected, cancelled, picked up, or returned.
- Approve, reject, cancel and check bookings in/out from your own system.
- Be warned of double bookings before they happen.
Base URLs & versions
The API is versioned in the path (/v1). A live version never changes in a breaking way — breaking changes ship as /v2. Test on sandbox first, then switch the base URL and key to production.
| Environment | Base URL | Key prefix |
|---|---|---|
| Sandbox (test) | https://api-dev.rynt.ae/api/partner/v1 | pk_test_… |
| Production | https://api.rynt.ae/api/partner/v1 | pk_live_… |
Conventions
- All money fields include a
currency. - All timestamps are ISO-8601 UTC (they end in
Z). - Every response includes a
request_id— quote it to RYNT support. - List endpoints are cursor-paginated; writes accept an optional
Idempotency-Key; requests are rate-limited per key.
Next stepHead to Authentication to use your API key, then run the Quickstart to go live on sandbox in five requests.
Updated about 2 hours ago
