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

# Pendle Market Interest Rates

> Track implied yields and interest rates across Pendle markets

The `ethereum.yields.pendle_market_interest_rates` table provides detailed interest rate information for Pendle markets.

## Interest Rate Tracking

The table captures key yield metrics:

* `implied_apy`: Annualized percentage yield implied by current market prices
* Market-specific rates for different yield tokens
* Historical rate tracking with full blockchain context

## Market Components

Each interest rate entry includes information about the market's token components:

1. **Standardized Yield Tokens (SY)**

   * `standardized_yield_token`: Contract address
   * `sy_name`: Human-readable name

2. **Yield Tokens (YT)**

   * `yield_token`: Contract address
   * `yt_name`: Token name

3. **Principal Tokens (PT)**
   * `principal_token`: Contract address
   * `pt_name`: Token name

## Sample Query

Fetch market interest rates for market by contract address.

```
select * from ethereum.yields.pendle_market_interest_rates
where market = '0x9a63fa80b5ddfd3cab23803fdb93ad2c18f3d5aa' -- Pendle: PT Syrup USDC 28AUG2025 / SY Syrup USDC
```

## Table Columns

| Column Name                     | Description                                          |
| ------------------------------- | ---------------------------------------------------- |
| market                          | Address of the Pendle market (liquidity pool)        |
| market\_name                    | Human-readable market name                           |
| implied\_apy                    | Annualized percentage yield implied by market prices |
| block\_timestamp                | Block timestamp                                      |
| block\_number                   | Block number                                         |
| block\_hash                     | Block hash                                           |
| transaction\_hash               | Transaction hash                                     |
| transaction\_index              | Transaction index in block                           |
| log\_index                      | Log index in transaction                             |
| standardized\_yield\_token      | Address of standardized yield token (SY)             |
| sy\_name                        | Name of standardized yield token                     |
| yield\_token                    | Address of yield token (YT)                          |
| yt\_name                        | Name of yield token                                  |
| principal\_token                | Address of principal token (PT)                      |
| pt\_name                        | Name of principal token                              |
| unique\_id                      | Unique identifier for rate record                    |
| \_created\_at                   | Record creation timestamp                            |
| \_updated\_at                   | Last update timestamp                                |
| \_changed\_since\_full\_refresh | Change tracking flag                                 |
