# Funding Pulse (`fraktalapi/funding-pulse`) Actor

Real-time funding rates, open interest, liquidations, long/short ratios, and cross-exchange spread
signals from Bybit, Binance, OKX, Bitget, dYdX, and Hyperliquid. CoinGlass alternative at a fraction of
the price.

- **URL**: https://apify.com/fraktalapi/funding-pulse.md
- **Developed by:** [FraktalAPI](https://apify.com/fraktalapi) (community)
- **Categories:** Developer tools, Automation
- **Stats:** 22 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 api requests

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## FundingPulse — Cross-Exchange Crypto Derivatives API

Real-time funding rates, open interest, long/short ratios, liquidations, and cross-exchange spread signals aggregated from **up to 6 major exchanges** — all through a single API.

A cost-effective alternative to CoinGlass ($29-699/mo) at a fraction of the price.

### What data does FundingPulse provide?

FundingPulse collects and normalizes derivatives data from Bybit, Binance, OKX, Bitget, dYdX, and Hyperliquid every 60 seconds:

- **Funding Rates** — Current and annualized rates across all exchanges for 30 perpetual pairs
- **Open Interest** — Real-time OI in contracts and USD value
- **Long/Short Ratios** — Account-level long vs short positioning
- **Liquidations** — Recent liquidation events with size and direction
- **Cross-Exchange Spreads** — The killer feature: instantly see funding rate differences between exchanges for arbitrage
- **Signals** — Pre-built funding arbitrage opportunities and composite sentiment scores

### Supported Exchanges

| Exchange | Funding | Open Interest | Long/Short | Availability |
|----------|:---:|:---:|:---:|:---:|
| OKX | Yes | Yes | Yes | All regions |
| Bitget | Yes | Yes | - | All regions |
| dYdX | Yes | Yes | - | All regions |
| Hyperliquid | Yes | Yes | - | All regions |
| Bybit | Yes | Yes | - | Region-dependent\* |
| Binance | Yes | Yes | Yes | Region-dependent\* |

\*Bybit and Binance apply geo-restrictions to their public APIs. Availability depends on the server region. When running on Apify (US servers), these exchanges may be unavailable. Self-hosted deployments from non-restricted regions will have full 6-exchange coverage.

### API Endpoints

#### Core Data

- `GET /api/funding-rates` — Current rates across all exchanges
- `GET /api/funding-rates/history` — Historical rates (tier-gated)
- `GET /api/open-interest` — Current OI across exchanges
- `GET /api/long-short-ratio` — Aggregated L/S ratios
- `GET /api/liquidations` — Recent liquidations

#### Signals & Analytics

- `GET /api/spreads` — Cross-exchange funding rate spreads for arbitrage
- `GET /api/signals/funding-arb` — Arb opportunities where spread exceeds threshold
- `GET /api/signals/sentiment` — Composite sentiment score from funding + OI + L/S
- `GET /api/overview` — Dashboard view of top pairs with all metrics

#### Meta

- `GET /api/health` — Exchange status, cache stats, uptime
- `GET /api/docs` — Full API documentation

### Query Parameters

All core endpoints support:

- `symbol` — Filter by canonical pair (e.g., `BTC-USDT`)
- `exchange` — Filter by exchange (e.g., `binance`, `okx`)

History endpoint additionally supports:

- `from` / `to` — Unix timestamp range
- `limit` — Max rows (default 100, max 1000)

### Example Response

```json
GET /api/funding-rates?symbol=BTC-USDT

{
  "success": true,
  "data": [
    {
      "symbol": "BTC-USDT",
      "exchange": "binance",
      "rate": 0.0001,
      "annualizedRate": 10.95,
      "nextFundingTime": 1700000000000,
      "markPrice": 67500.00,
      "indexPrice": 67510.00,
      "timestamp": 1699999000000
    },
    ...
  ],
  "meta": {
    "timestamp": 1699999500000,
    "exchanges": ["binance", "bybit", "okx", "bitget", "dydx", "hyperliquid"],
    "cached": true
  }
}
```

### Pricing Tiers

| Tier | Requests/day | Symbols | History | Signals |
|------|-------------|---------|---------|---------|
| Free | 100 | Top 10 | None | No |
| Basic | 5,000 | All 30 | 7 days | No |
| Pro | 50,000 | All 30 | 30 days | Yes |
| Ultra | Unlimited | All 30 | Full | Yes |

### Use Cases

- **Funding Rate Arbitrage** — Identify spreads between exchanges where you can go long on one and short on another to capture the funding differential
- **Sentiment Analysis** — Track aggregate market positioning through funding rates, OI changes, and L/S ratios
- **Risk Management** — Monitor liquidation cascades and OI shifts in real-time
- **Trading Bot Integration** — Feed normalized multi-exchange data into your algo strategies
- **Market Dashboards** — Build derivatives dashboards with a single API call to `/api/overview`

### Authentication

Pass your API key via the `x-api-key` header:

```
curl -H "x-api-key: YOUR_KEY" https://YOUR_STANDBY_URL/api/funding-rates
```

### Technical Details

- Data refreshes every 60 seconds (funding rates, OI) and every 5 minutes (L/S ratios)
- Sub-millisecond response times via in-memory cache
- Historical data stored in SQLite with WAL mode
- All symbols normalized to canonical format (e.g., `BTC-USDT`)
- Resilient collection: one exchange failing doesn't affect others

# Actor input Schema

## `apiKeys` (type: `string`):

Comma-separated tier:key pairs (e.g. free:demo-key-123,pro:my-pro-key)

## `port` (type: `integer`):

Server port (default: 3000)

## Actor input object example

```json
{
  "port": 3000
}
```

# 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("fraktalapi/funding-pulse").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("fraktalapi/funding-pulse").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).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 fraktalapi/funding-pulse --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fraktalapi/funding-pulse"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/vpxo7S7Vw477Mu6ag/builds/1Zin98qLCzVRe1b8a/openapi.json
