> For the complete documentation index, see [llms.txt](https://docs.tronsave.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tronsave.io/concepts/rental-model.md).

# The Rental Model

TronSave is a **two‑sided marketplace** with an order book that matches **buyers** (who need Energy/Bandwidth) with **providers** (who have spare staked resources).

## Key roles

* **Buyer** — places an order to rent resources for a `receiver` address and a `durationSec`.
* **Provider (seller)** — delegates Energy from their staked TRX and earns [APY](/concepts/pricing-and-apy.md).
* **Order book** — the live set of supply/demand that determines the market price.

## The price tiers

When buying, you set a `unitPrice` (in SUN per resource unit) — either a fixed number or one of three tiers:

<table><thead><tr><th width="181">Tier</th><th>Meaning</th></tr></thead><tbody><tr><td><code>SLOW</code></td><td>The lowest price at which the order can be set. Cheapest, may take longer / fill less.</td></tr><tr><td><code>MEDIUM</code></td><td>⭐ Default. The lowest price for the maximum market fill. If the market can't fill at all, <code>MEDIUM = SLOW + 10</code>.</td></tr><tr><td><code>FAST</code></td><td>Prioritizes immediate fill. If the market is 100% ready, <code>FAST = MEDIUM</code>; if &#x3C;100% ready, <code>FAST = MEDIUM + 10</code>; if 0%, <code>FAST = SLOW + 20</code>.</td></tr><tr><td><code>number</code></td><td>A fixed price in SUN for full control (e.g. <code>80</code>).</td></tr></tbody></table>

## How an order fills

Depending on supply and your [order options](/concepts/order-types.md), an order can be:

* **Fully filled** — 100% matched and delegated.
* **Partially filled** — only possible with `allowPartialFill: true`.
* **Pending** — waiting for a provider to match (e.g., a [Pending Order](/concepts/order-types.md)).

The status is reported as `fulfilledPercent` (0 = pending, 1–99 = partial, 100 = complete).

## Delegation & duration

Matched resources are **delegated on‑chain** from provider to the buyer's `receiver` for `durationSec`. When the duration ends, the delegation is reclaimed unless the order is [extended](/developers/api-reference/extend-orders.md).

{% hint style="info" %}
Because matched duration can be shorter than requested (the provider's resources may unlock sooner), TronSave automatically **refunds the unused duration** in TRX — see [Smart Order](/concepts/order-types.md#smart-order).
{% endhint %}

## Next steps

* [Order Types](/concepts/order-types.md) · [Pricing & APY](/concepts/pricing-and-apy.md) · [Staking 2.0](/concepts/staking-2.0.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tronsave.io/concepts/rental-model.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
