Renta Docs

API Reference

Complete reference for all Renta API endpoints, organized by domain.

The Renta API is organized around REST. It uses JSON for request/response bodies, standard HTTP verbs, and returns conventional HTTP status codes.

Base URL

https://api.getrenta.io/v1

Authentication

All requests require a Bearer token:

Authorization: Bearer renta_sk_live_...

See Authentication for details on key types and scopes.

Conventions

  • Monetary values are in cents (e.g., 5000 = $50.00 USD)
  • Dates use ISO 8601 format (2026-07-01T09:00:00Z)
  • IDs are UUID strings (e.g., fi_abc123)
  • Pagination uses cursor-based pagination with cursor and limit parameters
  • snake_case is used for all JSON field names

Endpoints by Domain

Fleet & Inventory

Bookings & Payments

Customers & Commerce

Locations & Reviews

Documents & Platform

Pagination

All list endpoints use cursor-based pagination:

{
  "data": [...],
  "has_more": true,
  "next_cursor": "eyJpZCI6ImZpXzk5OSJ9"
}
ParameterTypeDefaultDescription
cursorstringCursor from next_cursor of previous response
limitinteger20Number of results (1–100)

Error Format

{
  "error": {
    "type": "not_found",
    "message": "Fleet item not found"
  }
}

See Error Handling for all error types.