# Pendle Fixed Yield Screener — Stablecoin APY & Risk (`s5ifty4/pendle-fixed-yield-screener`) Actor

Ranks Pendle fixed-yield opportunities by implied APY, maturity, liquidity, prime status, and stablecoin/RWA risk. Returns decision-ready consider/watch/avoid rows.

- **URL**: https://apify.com/s5ifty4/pendle-fixed-yield-screener.md
- **Developed by:** [S5ifty4](https://apify.com/s5ifty4) (community)
- **Categories:** Automation, Business, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$1.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Pendle Fixed Yield Screener

Apify Actor that scans active Pendle markets and ranks fixed-yield opportunities by APY, maturity, liquidity, and risk.

### Why this Actor exists

Most Pendle data tools return raw market rows. This Actor is built to be more decision-ready:

- Filters for stablecoin-like fixed-yield opportunities by default.
- Scores markets by liquidity, maturity, APY, Pendle prime status, and asset-risk bucket.
- Labels each market as `consider`, `watch`, or `avoid`.
- Includes warnings such as thin liquidity, long maturity, not-prime market, and unusually high APY.
- Outputs clean JSON/CSV-compatible rows for dashboards, bots, and research workflows.
- Charges only for returned opportunity rows when pay-per-event monetization is enabled; the summary row is uncharged.

This is a screening tool, not financial advice.

### Default strategy

Defaults are tuned for a practical passive-income research workflow:

- Chains: Ethereum, Arbitrum, Base, BNB Chain
- Stablecoin-like markets only
- Minimum implied APY: 4%
- Minimum liquidity: $250k
- Max maturity: 540 days
- Risk mode: balanced

### Input

| Field | Default | Description |
|---|---:|---|
| `chains` | `["1", "42161", "8453", "56"]` | Pendle chain IDs to scan. |
| `riskMode` | `balanced` | `conservative`, `balanced`, or `all`. |
| `stablecoinOnly` | `true` | Restrict to stablecoin/RWA-like dollar markets. |
| `minImpliedApyPct` | `4` | Minimum implied/fixed APY percentage. |
| `minLiquidityUsd` | `250000` | Minimum market liquidity. |
| `maxDaysToMaturity` | `540` | Exclude longer-dated markets. |
| `includePrimeOnly` | `false` | Only include Pendle prime markets. |
| `maxResults` | `50` | Maximum output rows. |

### Output

The first dataset row is a summary object. Remaining rows are ranked opportunities with fields including:

- `decision`: `consider`, `watch`, or `avoid`
- `opportunityScore`: 0-100
- `marketName`
- `chain`
- `expiry`
- `daysToMaturity`
- `impliedApyPct`
- `liquidityUsd`
- `riskBucket`
- `liquidityTier`
- `maturityTier`
- `positiveSignals`
- `warnings`
- `reason`
- `sourceUrl`

### Local development

```bash
npm install
npm run test:local
```

Output is written to `storage/datasets/default/` when running locally.

### Data source

Uses Pendle's public API:

```text
https://api-v2.pendle.finance/core/v1/{chainId}/markets/active
```

### Disclaimer

This Actor is not financial advice. Pendle markets can include smart-contract risk, issuer/redemption risk, low exit liquidity, incentive/points risk, duration risk, and underlying asset risk. Always verify market details directly before trading.

# Actor input Schema

## `chains` (type: `array`):

Pendle chain IDs to scan. Defaults cover Ethereum, Arbitrum, Base, and BNB Chain.

## `riskMode` (type: `string`):

Conservative applies stricter liquidity/asset filters. Balanced is the default. All returns more speculative markets but labels them clearly.

## `stablecoinOnly` (type: `boolean`):

Restrict to markets tagged as stables or whose names look like stable/RWA dollar assets.

## `minImpliedApyPct` (type: `number`):

Minimum implied/fixed APY percentage to include.

## `minLiquidityUsd` (type: `integer`):

Minimum Pendle market liquidity in USD.

## `maxDaysToMaturity` (type: `integer`):

Exclude very long-dated markets beyond this number of days.

## `includePrimeOnly` (type: `boolean`):

If true, only include markets marked prime by Pendle.

## `maxResults` (type: `integer`):

Maximum rows to output after filtering and scoring.

## Actor input object example

```json
{
  "chains": [
    "1",
    "42161",
    "8453",
    "56"
  ],
  "riskMode": "balanced",
  "stablecoinOnly": true,
  "minImpliedApyPct": 4,
  "minLiquidityUsd": 250000,
  "maxDaysToMaturity": 540,
  "includePrimeOnly": false,
  "maxResults": 50
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("s5ifty4/pendle-fixed-yield-screener").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("s5ifty4/pendle-fixed-yield-screener").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call s5ifty4/pendle-fixed-yield-screener --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=s5ifty4/pendle-fixed-yield-screener",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/p41pLx4qIdI32Ynf2/builds/CE61Kg6AYcVKZKC3C/openapi.json
