Live
get_player_profile
pokerdb.thehendonmob.comReturns player profile, career earnings, rankings and up to 50 recent tournament results from https://pokerdb.thehendonmob.com, with the complete cash count.
Parameters1
Runs9
Updated3d ago
Operational9 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_player_profile?
Returns player profile, career earnings, rankings and up to 50 recent tournament results from https://pokerdb.thehendonmob.com, with the complete cash count. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_id and get the result back without maintaining a scraper.
Response
{
"awards": [
{
"name": "<string>",
"award_url": "<string>",
"award_type": "<string>"
}
],
"country": "<string>",
"results": [
{
"date": "<string>",
"place": "<string>",
"prize": "<string>",
"country": "<string>",
"event_id": "<string>",
"event_url": "<string>",
"prize_usd": "<string>",
"watch_url": "<string>",
"event_name": "<string>",
"event_tags": [
"<string>"
],
"gpi_points": 0,
"poy_points": 0,
"country_code": "<string>",
"place_number": 0,
"prize_amount": 0,
"circuit_codes": [
"<string>"
],
"prize_usd_amount": 0,
"festival_or_venue": "<string>"
}
],
"rankings": [
{
"name": "<string>",
"rank": "<string>",
"rank_number": 0,
"ranking_url": "<string>"
}
],
"locations": [
{
"label": "<string>",
"value": "<string>",
"country": "<string>",
"country_code": "<string>"
}
],
"photo_url": "<string>",
"player_id": "<string>",
"residence": "<string>",
"birthplace": "<string>",
"player_url": "<string>",
"nationality": "<string>",
"player_name": "<string>",
"twitter_url": "<string>",
"country_code": "<string>",
"total_cashes": 0,
"unique_views": 0,
"results_limit": 0,
"best_live_cash": "<string>",
"twitter_handle": "<string>",
"results_returned": 0,
"residence_country": "<string>",
"birthplace_country": "<string>",
"nationality_country": "<string>",
"total_live_earnings": "<string>",
"best_live_cash_amount": 0,
"residence_country_code": "<string>",
"birthplace_country_code": "<string>",
"all_time_money_list_rank": "<string>",
"nationality_country_code": "<string>",
"total_live_earnings_amount": 0,
"all_time_money_list_rank_number": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ea07fa89-ff6e-4558-a235-b2acba37d749/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ea07fa89-ff6e-4558-a235-b2acba37d749",
"variables": {
"player_id": "181"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ea07fa89-ff6e-4558-a235-b2acba37d749") — the "get_player_profile" function, which returns player profile, career earnings, rankings and up to 50 recent tournament results from https://pokerdb.thehendonmob.com, with the complete cash count.. It takes player_id (str). Return the result as structured JSON.