Consumable CV endpoints in XML, JSON, and TXT formats for developers and recruiters
The portfolio exposes a public API that provides programmatic access to Yeray’s CV data in multiple formats. This developer-friendly feature allows technical recruiters and developers to consume CV data directly from the terminal without downloading PDF files.
<?xml version="1.0" encoding="UTF-8"?><resume> <header> <name>Yeray Garrido</name> <title>Full Stack Developer & Backend Specialist</title> </header> <contact> <email>garridoparrayeraytx@gmail.com</email> <github>https://github.com/Garridoparrayeray</github> <location>Spain</location> </contact> <about>Software Engineer and Full Stack Developer specializing in PHP, Java, MySQL, and custom WordPress (_s). I build scalable, optimized, and custom web solutions.</about> <tech_stack> <backend>Java, PHP, MySQL</backend> <frontend>JavaScript, HTML5, CSS3</frontend> <tools>Git, Figma</tools> <cms>WordPress (Custom Themes & Plugins)</cms> </tech_stack> <experience> <job> <role>Freelance Full Stack Developer & DAW Student</role> <company>Self-Employed / Vocational Training</company> <date>2023 - Present</date> <description>Currently pursuing a Higher Degree in Web Application Development (DAW) while working as a freelance developer. Building custom web apps, robust backends in PHP/Java, and custom WordPress themes.</description> </job> <job> <role>Level 3 Professional Certificate</role> <company>Web Application Development</company> <date>Completed</date> <description>Official certification in frontend and backend development, database management, and web application deployment.</description> </job> <job> <role>Software Engineering Student</role> <company>42 Urduliz (Fundación Telefónica)</company> <date>1 Year Program</date> <description>Peer-to-peer methodology with no teachers. Focused on C programming, algorithms, memory management, and system architecture fundamentals.</description> </job> </experience> <quote>Code is like humor. When you have to explain it, it's bad.</quote></resume>
XML is ideal for systems that require strict schema validation or XSLT transformations.
{ "name": "Yeray Garrido", "title": "Full Stack Developer & Backend Specialist", "contact": { "email": "garridoparrayeraytx@gmail.com", "github": "https://github.com/Garridoparrayeray", "location": "Spain" }, "about": "Software Engineer and Full Stack Developer specializing in PHP, Java, MySQL, and custom WordPress (_s). I build scalable, optimized, and custom web solutions.", "tech_stack": { "backend": ["Java", "PHP", "MySQL"], "frontend": ["JavaScript", "HTML5", "CSS3"], "tools": ["Git", "Figma"], "cms": ["WordPress (Custom Themes & Plugins)"] }, "experience": [ { "role": "Freelance Full Stack Developer & DAW Student", "company": "Self-Employed / Vocational Training", "date": "2023 - Present", "description": "Currently pursuing a Higher Degree in Web Application Development (DAW) while working as a freelance developer. Building custom web apps, robust backends in PHP/Java, and custom WordPress themes." }, { "role": "Level 3 Professional Certificate", "company": "Web Application Development", "date": "Completed", "description": "Official certification in frontend and backend development, database management, and web application deployment." }, { "role": "Software Engineering Student", "company": "42 Urduliz (Fundación Telefónica)", "date": "1 Year Program", "description": "Peer-to-peer methodology with no teachers. Focused on C programming, algorithms, memory management, and system architecture fundamentals." } ], "quote": "Code is like humor. When you have to explain it, it's bad."}