The /rate
endpoint
The /rate
endpoint provides information about the up-to-date rates of the Parabol protocol.
It offers:
- Fixed Rate: The current highest fixed rate offered by the protocol.
- Floating Rate: The current floating rate, which may vary based on RSP and Overnight Repo conditions.
- Total Marginal Market Rate: The overall marginal market rate for the Parabol protocol.
- Protocol Sync Status: Indicates whether the protocol is currently synced, ensuring users have the most up-to-date information.
ℹ️
If the protocol is synced, it means all claiming processes include the bonus floating rates.
⚠️
The protocol’s sync status will be set to false
between 12:00 AM and 9:10 AM
New York time because of the overnight repo auctions, but the lending will
still be working as expected.
HTTP Method
GET
Endpoint URL
https://api.parabol.fi/rate
Response
{
fixedRate: string;
floatingRate: string;
marketRate: string;
isProtocolSynced: boolean;
}
Example Usage
curl 'https://api.parabol.fi/rate'