Discover/Freecash API
live

Freecash APIfreecash.io

Access Freecash.io public data via API: withdrawal feed, platform stats, top earner leaderboard, featured offers, offer categories, and cashout methods.

Endpoint health
verified 4d ago
get_cashout_methods
get_stats
get_featured_offers
get_withdrawals
get_offer_categories
5/5 passing latest checkself-healing
Endpoints
6
Updated
11d ago

What is the Freecash API?

The Freecash API exposes 6 endpoints covering the platform's public activity data, including real-time withdrawal transactions, earnings leaderboard, and platform-wide statistics. The get_withdrawals endpoint returns individual transaction records with fields like username, coins, withdrawType, countryCode, and date. The get_leaderboard endpoint supports daily, weekly, and monthly period filters. Together the endpoints give a structured view of Freecash user activity and available earning opportunities.

Try it
Page number.
Max results per page.
Time period: DAILY, WEEKLY, MONTHLY.
Earning source, usually COINS.
api.parse.bot/scraper/70a7be56-cb0c-481c-a10b-dc8ae6d532d8/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/70a7be56-cb0c-481c-a10b-dc8ae6d532d8/get_leaderboard' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace freecash-io-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Freecash SDK — bounded, re-runnable; every call capped."""
from parse_apis.Freecash_API import Freecash, CountryCode, NotFoundError

freecash = Freecash()

# Get platform-wide statistics (single resource, no pagination)
stats = freecash.stats.get()
print(stats.total_earnings, stats.average_earning_yesterday, stats.registered_users)

# List recent withdrawals filtered to US users
for withdrawal in freecash.withdrawals.list(country_code=CountryCode.US, limit=5):
    print(withdrawal.username, withdrawal.coins, withdrawal.withdraw_type, withdrawal.date)

# Browse available cashout methods
for method in freecash.cashout_methods.list(limit=5):
    print(method.name, method.type)

# List featured offers currently on the homepage
for offer in freecash.featured_offers.list(limit=5):
    print(offer.name)

# List offer categories with typed error handling
try:
    for category in freecash.offer_categories.list(limit=10):
        print(category.id, category.name)
except NotFoundError as exc:
    print(f"categories unavailable: {exc}")

print("exercised: stats.get / withdrawals.list / cashout_methods.list / featured_offers.list / offer_categories.list")
All endpoints · 6 totalmissing one? ·

Retrieve the earnings leaderboard showing top earners on the platform.

Input
ParamTypeDescription
pageintegerPage number.
limitintegerMax results per page.
periodstringTime period: DAILY, WEEKLY, MONTHLY.
sourcestringEarning source, usually COINS.
Response
{
  "type": "object",
  "fields": {
    "meta": "object",
    "items": "array"
  },
  "sample": {
    "meta": {
      "itemsCount": 100,
      "totalPages": 7392,
      "currentPage": 1
    },
    "items": [
      {
        "rank": 1,
        "user": {
          "avatar": "...",
          "gainId": 35276361,
          "username": "darktriadclassic"
        },
        "score": 887350,
        "reward": 50000
      }
    ]
  }
}

About the Freecash API

Withdrawal Feed and Leaderboard

The get_withdrawals endpoint returns a paginated list of recent cashout transactions. Each item includes gainId, withdrawType, coins, bonus, date, username, type, avatar, and countryCode. You can filter by country using ISO 2-letter codes (US, CA, DE, GB, SE, PL, and others) or pass ALL to skip filtering. Results are ordered most-recent first. The get_leaderboard endpoint returns top earners with meta and items fields; the period parameter accepts DAILY, WEEKLY, or MONTHLY, and the source parameter is typically set to COINS.

Platform Stats and Offers

get_stats returns four headline figures shown on the Freecash homepage: total_earnings, registered_users, avg_time_to_first_cash, and average_earning_yesterday. These are returned as formatted strings (e.g. '$300,000,000+', '70M+'). get_offer_categories returns a static list of category objects, each with an id and name, representing the types of tasks users can earn from. get_featured_offers returns the current rotation of featured offer names from the homepage; the list changes as offers are swapped in and out.

Cashout Methods

get_cashout_methods returns the full list of withdrawal options available on Freecash. Each method object includes a name, icon, and type, covering cash payouts, cryptocurrencies, and gift cards. This endpoint is useful for building payout dashboards or monitoring which redemption options are currently active on the platform.

Reliability & maintenanceVerified

The Freecash API is a managed, monitored endpoint for freecash.io — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when freecash.io changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official freecash.io API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor real-time Freecash withdrawal activity filtered by country code for regional analysis.
  • Build a leaderboard tracker that compares DAILY, WEEKLY, and MONTHLY top earners over time.
  • Display Freecash platform stats (total earnings, registered users) in a rewards industry dashboard.
  • Track which featured offers are currently live on the homepage and alert when the rotation changes.
  • Enumerate available cashout methods (crypto, gift cards, cash) to compare Freecash payout options against other platforms.
  • Analyze offer categories to understand which earning task types Freecash currently supports.
  • Aggregate withdrawal coin amounts and bonus fields to model user earning patterns across time periods.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Freecash have an official developer API?+
Freecash does not publish a documented public developer API. This Parse API provides structured access to the public data Freecash exposes on its platform.
What does the `get_withdrawals` endpoint return, and how do I filter by country?+
It returns an array of transaction objects, each with fields including gainId, withdrawType, coins, bonus, date, username, type, avatar, and countryCode. Pass a 2-letter ISO country code (e.g. US, DE, GB) to the country_code parameter to filter results. Pass ALL to retrieve withdrawals across all countries.
How current is the withdrawal feed data?+
The get_withdrawals endpoint reflects the live public activity feed on Freecash, ordered most-recent first. It does not expose historical archive data beyond what appears in the current feed pagination.
Does the API return individual offer details like payout amounts or completion requirements?+
Not currently. get_featured_offers returns offer names only, and get_offer_categories returns category ids and names. Per-offer payout amounts, task requirements, and availability details are not covered. You can fork this API on Parse and revise it to add an endpoint targeting individual offer detail pages.
Does the leaderboard endpoint expose a specific user's full earnings history?+
No. get_leaderboard returns the ranked list of top earners for a given period (DAILY, WEEKLY, or MONTHLY) with aggregated data. Individual user profile history is not covered by any endpoint. You can fork this API on Parse and revise it to add user-profile-level data if that surface is publicly accessible.
Page content last updated . Spec covers 6 endpoints from freecash.io.
Related APIs in FinanceSee all →
app.hyperliquid.xyz API
Access real-time leaderboard rankings, market data for perpetual and spot markets, order books, and detailed trader analytics on the Hyperliquid decentralized exchange. Monitor top traders' open positions and identify delta-neutral trading strategies.
funpay.com API
Browse and monitor gaming marketplace listings and prices on FunPay.com. Search for games and categories, view current listings and pricing, explore the full game directory alphabetically, and look up seller profiles to research reputation and active offers.
csgoroll.com API
Access real-time CS:GO marketplace listings and stats, browse available cases with detailed information, check leaderboards and case battle results, and view the latest game drops and exchange rates. Track pricing data, compare case odds, and monitor top player rankings all from one unified source.
traded.co API
Access comprehensive deal data from Traded.co including real estate transactions, hotel deals, VC investments, and market awards, while searching listings and tracking top brokers and performers. Get detailed deal information, market news, and broker profiles to research properties, investments, and industry leaders.
eldorado.com API
Search for in-game accounts and currency listings on Eldorado.gg, view seller profiles with reviews, and check offer details and pricing. Browse featured games, explore account inventories by game, and research seller history to make informed purchases on the marketplace.
airdrops.io API
Discover and track crypto airdrops in real-time by browsing latest opportunities, searching by category, and viewing detailed project information including participation requirements and token details. Monitor live cryptocurrency prices and stay updated on hot and potential airdrops all in one place.
cfbenchmarks.com API
Monitor real-time cryptocurrency prices and market cap data—both free float and full valuations—to screen and compare digital assets. Access comprehensive pricing information across the crypto market to inform your investment decisions and portfolio analysis.
kraken.com API
Get live Kraken exchange market data including supported assets, trading pairs metadata, tickers, OHLCV candlesticks, and bid/ask spread history.