get_professional_profile
jrdz.devReturns Jonathan Rodriguez's complete professional portfolio and CV from https://jrdz.dev, including profile details, projects, work history, education, certifications, and skills in English or Spanish.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_professional_profile?
Returns Jonathan Rodriguez's complete professional portfolio and CV from https://jrdz.dev, including profile details, projects, work history, education, certifications, and skills in English or Spanish. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass locale and get the result back without maintaining a scraper.
Response
{
"locale": "<string>",
"skills": {
"soft": [
"<string>"
],
"technical": [
"<string>"
]
},
"projects": [
{
"url": "<string>",
"name": "<string>",
"description": "<string>",
"technologies": [
"<string>"
]
}
],
"education": [
{
"period": "<string>",
"institution": "<string>",
"qualification": "<string>"
}
],
"about_summary": "<string>",
"personal_info": {
"name": "<string>",
"email": "<string>",
"github": "<string>",
"website": "<string>",
"linkedin": "<string>",
"location": "<string>",
"professional_title": "<string>"
},
"certifications": [
{}
],
"work_experience": [
{
"period": "<string>",
"company": "<string>",
"summary": "<string>",
"job_title": "<string>",
"highlights": [
"<string>"
],
"company_url": "<string>",
"technologies": [
"<string>"
]
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/d6709628-c09f-4e15-869b-18382851e64a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d6709628-c09f-4e15-869b-18382851e64a",
"variables": {
"locale": "en"
}
}'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="d6709628-c09f-4e15-869b-18382851e64a") — the "get_professional_profile" function, which returns Jonathan Rodriguez's complete professional portfolio and CV from https://jrdz.dev, including profile details, projects, work history, education, certifications, and skills in English or Spanish.. It takes locale (str). Return the result as structured JSON.