thehendonmob.com APIthehendonmob.com ↗
Access The Hendon Mob poker database via API. Search players, retrieve tournament results, earnings stats, rankings, trending players, and poker news.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/edaaa365-de40-407d-9316-1877f148863e/get_trending_players' \ -H 'X-API-Key: $PARSE_API_KEY'
Get currently trending players from the homepage. Returns a ranked list of players currently trending on The Hendon Mob.
No input parameters required.
{
"type": "object",
"fields": {
"trending_players": "array of player objects with name, player_id, rank, and profile_url"
},
"sample": {
"data": {
"trending_players": [
{
"name": "Albert Daher",
"rank": 1,
"player_id": "195795",
"profile_url": "https://pokerdb.thehendonmob.com/player.php?a=r&n=195795"
},
{
"name": "Stephen Chidwick",
"rank": 2,
"player_id": "97716",
"profile_url": "https://pokerdb.thehendonmob.com/player.php?a=r&n=97716"
}
]
},
"status": "success"
}
}About the thehendonmob.com API
This API exposes 4 endpoints covering The Hendon Mob's poker player database, returning player profiles, tournament histories, earnings statistics, and news articles. Use get_player_profile to retrieve a player's total live earnings, All Time Money List rank, best live cash, and up to 20 recent tournament results. search_players lets you look up any player by name and get back their internal player ID for deeper queries.
Player Search and Profiles
The search_players endpoint accepts a query string (e.g. 'Phil Ivey') and returns an array of matching players, each with a name, player_id, and profile_url. The player_id is a numeric string used as the required input for get_player_profile. The profile endpoint returns a statistics object that includes fields like Total Live Earnings, Best Live Cash, and All Time Money List position, alongside a tournament_results array of the player's 20 most recent cashes, each with date, event, place, and prize.
Trending Players and News
get_trending_players requires no parameters and returns a ranked list of players currently featured on The Hendon Mob homepage, with each entry including name, player_id, rank, and profile_url. This is useful for tracking which players are generating the most attention at any given time. get_poker_news similarly requires no inputs and returns recent articles from the news section, with each article object carrying title, url, author, date, and summary.
Data Scope and Freshness
The tournament_results array is capped at the 20 most recent results per player — full historical tournament records beyond that window are not returned in a single call. Player IDs are stable numeric strings consistent across search_players and get_trending_players, so they can be stored and reused. News articles reflect what appears on The Hendon Mob's news page at query time.
- Build a poker player comparison tool using earnings and ranking fields from
get_player_profile - Track which players are trending in the poker community using
get_trending_playersrank data - Populate a player leaderboard with All Time Money List positions and Total Live Earnings
- Monitor a specific player's recent tournament performance using the
tournament_resultsarray - Aggregate poker news headlines and summaries for a poker-focused content feed via
get_poker_news - Resolve player names to internal IDs using
search_playersbefore fetching full profile data - Alert users when a player they follow appears in the trending players list
| 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.
Does The Hendon Mob have an official developer API?+
How many tournament results does `get_player_profile` return, and can I paginate for older results?+
Does the API return player social media profiles, photos, or nationality data?+
What does the `statistics` object in `get_player_profile` actually contain?+
statistics object includes named key-value pairs drawn from the player's profile stats section, such as Total Live Earnings, Best Live Cash, and All Time Money List position. The exact keys present depend on what The Hendon Mob displays for that player.Can I retrieve results for a specific tournament or filter news articles by category?+
get_player_profile and unfiltered news via get_poker_news. Tournament-specific lookups and news filtering by category are not supported. You can fork the API on Parse and revise it to add a tournament search endpoint.