freecash.io APIfreecash.io ↗
Access Freecash.io public data via API: recent withdrawals, top earner leaderboards, platform stats, offer categories, featured offers, and cashout methods.
curl -X GET 'https://api.parse.bot/scraper/70a7be56-cb0c-481c-a10b-dc8ae6d532d8/get_leaderboard' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the earnings leaderboard showing top earners on the platform.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number. |
| limit | integer | Max results per page. |
| period | string | Time period: DAILY, WEEKLY, MONTHLY. |
| source | string | Earning source, usually COINS. |
{
"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.io API
The Freecash.io API exposes 6 endpoints covering the platform's public activity data, including real-time withdrawal transactions, earnings leaderboards, and aggregate platform statistics. The get_withdrawals endpoint returns individual transaction records with fields like username, coins, withdrawType, countryCode, and date. Whether you're building a monitoring dashboard or researching reward-platform trends, the API surfaces the data Freecash displays publicly without requiring a Freecash account.
Withdrawals and Leaderboard
The get_withdrawals endpoint returns an array of recent cashout transactions. Each object includes gainId, withdrawType, coins, bonus, date, username, type, avatar, and countryCode. You can pass a limit integer to cap results and a country_code string (e.g. US, DE, CA, or ALL) to narrow results by geography. The get_leaderboard endpoint supports page, limit, period (DAILY, WEEKLY, or MONTHLY), and source parameters, returning a meta object and an items array of top earners ranked by coin earnings.
Platform Stats and Offers
The get_stats endpoint takes no inputs and returns three string fields: total_earnings, registered_users, and average_earning_yesterday. These mirror the headline figures shown on the Freecash homepage. The get_featured_offers endpoint returns an array of offer objects, each carrying a name field drawn from the current homepage content. The get_offer_categories endpoint returns a static list of category objects with id and name, representing the earning category types available on the platform.
Cashout Methods
The get_cashout_methods endpoint returns all withdrawal options Freecash supports, organized as an array of objects with name, icon, and type. The type field distinguishes between cash options, cryptocurrencies, and gift cards, making it straightforward to enumerate or filter the full set of payout rails the platform currently offers.
- Track real-time withdrawal activity by country using the get_withdrawals country_code filter.
- Build a leaderboard widget for a community site using DAILY, WEEKLY, or MONTHLY period data from get_leaderboard.
- Monitor platform growth over time by periodically recording registered_users and total_earnings from get_stats.
- Display available gift card and crypto payout options in a comparison tool using get_cashout_methods type field.
- Aggregate featured offer names from get_featured_offers to track which campaigns Freecash is currently promoting.
- Enumerate earning category types via get_offer_categories to classify or tag reward-platform content.
- Research average daily earnings trends across the Freecash user base using average_earning_yesterday from get_stats.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.