get_athlete_profile
maxpreps.comGets a detailed athlete profile from https://maxpreps.com using a roster career_id. Returns profile context, career history, timeline activity, prospect report data, and club team records with all non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_athlete_profile?
Gets a detailed athlete profile from https://maxpreps.com using a roster career_id. Returns profile context, career history, timeline activity, prospect report data, and club team records with all non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass career_id, max_timeline_pages, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"menu": [
{}
],
"timeline": [
{}
],
"career_id": "<string>",
"club_teams": [
{}
],
"athlete_name": "<string>",
"canonical_url": "<string>",
"career_history": [
{}
],
"profile_context": {},
"prospect_report": {},
"short_career_id": "<string>",
"career_home_cards": {},
"data_availability": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/4429bfc1-fc71-44c5-b594-f99c189255b2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4429bfc1-fc71-44c5-b594-f99c189255b2",
"variables": {
"career_id": "4b041cad-9ba7-43eb-960d-5b32201049f9",
"max_timeline_pages": 2,
"timeout_seconds": 30
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="4429bfc1-fc71-44c5-b594-f99c189255b2") — the "get_athlete_profile" function, which gets a detailed athlete profile from https://maxpreps.com using a roster career_id. Returns profile context, career history, timeline activity, prospect report data, and club team records with all non-empty source fields.. It takes career_id (str), max_timeline_pages (int), timeout_seconds (int). Return the result as structured JSON.