Jupiter Perps Stats Scraper avatar

Jupiter Perps Stats Scraper

Pricing

from $7.50 / 1,000 results

Go to Apify Store
Jupiter Perps Stats Scraper

Jupiter Perps Stats Scraper

Scrapes Jupiter Perpetuals position stats by market and side. Returns each position as a flat row with trader, size, collateral, and PnL.

Pricing

from $7.50 / 1,000 results

Rating

0.0

(0)

Developer

ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 days ago

Last modified

Share

ParseForge

Jupiter Perps Stats Scraper

Scrape Jupiter Perpetuals position stats by market and side, up to a million records per run. Every record returns the trader, size, collateral, and PnL. No RPC endpoint or API key required. Export to CSV, JSON, Excel, or XML.

Jupiter's on-chain perpetuals data is scattered across Solana blocks and RPC providers, making bulk analysis slow and expensive. This actor reads the public Jupiter Perps stats feed directly, filtered by market and long or short side, and returns each position in one fixed schema. It is built for traders and researchers who need clean, flat datasets without writing Rust or running archive nodes.

Who uses itWhat they scrape Jupiter Perps for
Crypto tradersMonitor aggregate long and short positioning on SOL-PERP before a volatility event.
Quantitative researchersBuild a historical dataset of perp trader PnL and collateral for strategy backtesting.
Risk analystsTrack large position sizes and liquidation levels across Jupiter markets.
DeFi content creatorsPull the latest perp stats for market commentary and dashboards.

What it does

This Actor collects Jupiter Perpetuals position stats by market and side, and returns each one as a flat row.

  • ๐Ÿ“ˆ Side filter: collect only long positions, only short positions, or both.
  • ๐Ÿท๏ธ Market filter: narrow results to a specific market like SOL-PERP or BTC-PERP.
  • ๐Ÿ“Š Volume control: set a hard cap from 1 to 1,000,000 records per run.

Results export to CSV, JSON, Excel, or XML, or straight from the API.

What you can do with Jupiter Perps data

๐Ÿ“ˆ Monitor positioning before news.

A trader runs the scraper for SOL-PERP long positions five minutes before a Fed announcement to gauge crowd bias.

๐Ÿงช Backtest perp strategies.

A quant collects a million historical position records, filters by side and market, and feeds the PnL data into a Python backtester.

โš ๏ธ Track liquidation risk.

A risk analyst pulls all large short positions on BTC-PERP and cross-references collateral ratios to flag accounts near liquidation.

๐Ÿ“Š Build a perp dashboard.

A DeFi content creator schedules daily runs for several markets and pipes the flat CSV into a Google Sheets dashboard.

Why choose this scraper

What you get
No RPC or API keyReads the public stats feed so you skip Solana RPC costs and rate limits.
Flat, clean schemaEvery position arrives as one row with trader, size, collateral, and PnL.
Side and market filtersCollect only the longs, only the shorts, or a single market in one run.
Runs at scalePull up to a million records per run for backtesting or market snapshots.

How it compares

No other Store actor targets Jupiter Perps the same way, so the honest comparison is with the alternatives teams actually weigh.

Jupiter Perps Stats ScraperBuild it in-houseBy hand
SetupRun it now, zero configDays of engineeringNone, but hours per pull
When Jupiter Perps changesMaintained for youYou fix itYou re-learn the page
Proxies, retries, anti-botBuilt inYour problemBrowser only
OutputFixed JSON schema, CSV/Excel exportWhatever you buildCopy-paste
CostPay per resultEngineering timeAnalyst hours

Configure the run

Drive the Actor with an optional market filter and a side selector, and the cap limits how many records reach your dataset. The Input tab lists every parameter.

A first run with the defaults:

{
"maxItems": 10
}

A larger pull:

{
"maxItems": 200
}

Pricing

Pay-per-result: $0.0085 per result collected. You pay only for the results written to your dataset.

Results collectedApproximate cost
100 results$0.85
1,000 results$8.50
10,000 results$85.00

New Apify accounts start with $5 in free credit.

Free users

Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.

Run it

  1. Create a free Apify account with $5 in credit.
  2. Open the Jupiter Perps Stats Scraper.
  3. Set your inputs and any filters, then click Start.
  4. Export the results as CSV, Excel, JSON, or XML from the Dataset tab.

Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.

Use with AI agents (MCP)

Give an AI agent live access to Jupiter Perps through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:

$claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/jupiter-perps-stats-scraper"

Then prompt it in plain language to run the scraper and read back the results.

Troubleshooting

Why am I getting no results?

Check your market filter. If you typed a market that does not exist or has no open positions, the dataset will be empty. Try leaving the market field blank to see all available markets.

The run stopped before reaching my maxItems.

The actor collects only the positions that exist at that moment. If the feed has fewer open positions than your maxItems value, the run finishes early with whatever was available.

I see a timeout error.

The Jupiter stats feed can slow down during network congestion. Increase the actor's timeout in the run settings, or reduce maxItems and run more frequent, smaller pulls.

The side filter is not working.

Make sure you selected Long or Short from the dropdown, not Both. The filter is case-sensitive and must match the enum values exactly.

My export has duplicate rows.

If you run the actor multiple times and append to the same dataset, the same position may appear in more than one run. Deduplicate on the trader address and market in your post-processing step.

FAQ

QuestionAnswer
Do I need a Solana RPC endpoint or API key?No. The actor reads the public Jupiter Perps stats feed, so you do not need an RPC provider, Helius key, or any other API key.
What markets can I scrape?You can leave the market filter empty to get all markets, or enter a specific one like SOL-PERP, BTC-PERP, or ETH-PERP.
How many records can I collect in one run?You set the maximum with the maxItems field, from 1 up to 1,000,000 records per run.
Can I get only long or only short positions?Yes. Use the side selector to choose Long, Short, or Both before you start the run.
What does one row of output look like?Each row is a flat object with fields for the trader address, position size, collateral, PnL, market, and side. The exact field list is shown in the sample output on the actor's page.
Is this the same as scraping Solana blocks?No. This reads Jupiter's own perp stats endpoint, so it is faster and lighter than walking Solana blocks or running a Geyser plugin.
Can I schedule this to run every hour?Yes. You can set an Apify schedule to run the actor at any interval and append new records to a named dataset.
What export formats are supported?You can export your dataset to CSV, JSON, Excel, or XML from the Apify run console.
Does this actor use the Jupiter API?It reads the same public feed that the Jupiter UI uses, so no separate API registration is needed.
Can I filter by trader address?The actor does not have a trader-address input filter, but you can filter the exported CSV or JSON by any field after the run completes.

Browse the full ParseForge collection for more scrapers.

๐Ÿ†˜ Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.

โš ๏ธ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by Jupiter. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.