> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blockradar.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Liquidity Pool API

> Manage stablecoin liquidity rates for corridor-based settlement.

The Liquidity Pool API lets you define and manage exchange rates for stablecoin pairs. This powers FX desk and corridor settlement use cases where you need to offer consistent, programmatically managed rates to counterparties.

## What you can do

* Create a rate for a stablecoin pair
* Retrieve current and historical rates
* Update or deactivate rates
* Reactivate a previously deactivated rate

## Endpoints

| Method  | Endpoint                                    | Description       |
| ------- | ------------------------------------------- | ----------------- |
| `POST`  | `/liquidity-pool/rates`                     | Create a new rate |
| `GET`   | `/liquidity-pool/rates/{rateId}`            | Get a rate        |
| `PATCH` | `/liquidity-pool/rates/{rateId}`            | Update a rate     |
| `POST`  | `/liquidity-pool/rates/{rateId}/deactivate` | Deactivate a rate |
| `POST`  | `/liquidity-pool/rates/{rateId}/reactivate` | Reactivate a rate |
| `GET`   | `/liquidity-pool/rates/{rateId}/history`    | Get rate history  |

<Card title="Full API Reference" icon="book" href="/en/api-reference/liquidity-pool/create-rate">
  View all liquidity pool endpoints in the API Reference tab.
</Card>
