curl --request GET \
--url https://api.example.com/api/portfolios/{slug}{
"success": true,
"message": "<string>",
"timestamp": "<string>",
"data": {
"slug": "<string>",
"fullName": "<string>",
"headline": "<string>",
"bio": "<string>",
"contactEmail": "<string>",
"location": "<string>",
"avatarUrl": "<string>",
"resumeUrl": "<string>",
"tkohCollab": true,
"socialLinks": [
{
"id": 123,
"platform": "<string>",
"url": "<string>",
"sortOrder": 123
}
],
"skillCategories": [
{
"id": 123,
"name": "<string>",
"sortOrder": 123,
"skills": [
{
"id": 123,
"name": "<string>",
"globalSkillId": 123,
"level": 123,
"icon": "<string>"
}
]
}
],
"projects": [
{
"title": "<string>",
"slug": "<string>",
"summary": "<string>",
"coverImage": "<string>",
"featured": true
}
],
"experiences": [
{
"id": 123,
"company": "<string>",
"role": "<string>",
"location": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"current": true,
"description": "<string>"
}
],
"education": [
{
"id": 123,
"institution": "<string>",
"degree": "<string>",
"field": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"description": "<string>"
}
],
"certificates": [
{
"id": 123,
"educationId": 123,
"name": "<string>",
"description": "<string>",
"imageUrl": "<string>",
"fileId": "<string>"
}
]
}
}Get complete portfolio information including projects, experience, education, and skills
curl --request GET \
--url https://api.example.com/api/portfolios/{slug}{
"success": true,
"message": "<string>",
"timestamp": "<string>",
"data": {
"slug": "<string>",
"fullName": "<string>",
"headline": "<string>",
"bio": "<string>",
"contactEmail": "<string>",
"location": "<string>",
"avatarUrl": "<string>",
"resumeUrl": "<string>",
"tkohCollab": true,
"socialLinks": [
{
"id": 123,
"platform": "<string>",
"url": "<string>",
"sortOrder": 123
}
],
"skillCategories": [
{
"id": 123,
"name": "<string>",
"sortOrder": 123,
"skills": [
{
"id": 123,
"name": "<string>",
"globalSkillId": 123,
"level": 123,
"icon": "<string>"
}
]
}
],
"projects": [
{
"title": "<string>",
"slug": "<string>",
"summary": "<string>",
"coverImage": "<string>",
"featured": true
}
],
"experiences": [
{
"id": 123,
"company": "<string>",
"role": "<string>",
"location": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"current": true,
"description": "<string>"
}
],
"education": [
{
"id": 123,
"institution": "<string>",
"degree": "<string>",
"field": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"description": "<string>"
}
],
"certificates": [
{
"id": 123,
"educationId": 123,
"name": "<string>",
"description": "<string>",
"imageUrl": "<string>",
"fileId": "<string>"
}
]
}
}curl https://api.portfoliohub.com/api/portfolios/john-doe
{
"success": true,
"message": "Portafolio obtenido exitosamente",
"timestamp": "2026-03-09T10:30:00Z",
"data": {
"slug": "john-doe",
"fullName": "John Doe",
"headline": "Full Stack Developer | React & Spring Boot Expert",
"bio": "Passionate software engineer with 5+ years of experience building scalable web applications. Specialized in modern JavaScript frameworks and enterprise Java development.",
"contactEmail": "[email protected]",
"location": "San Francisco, CA",
"avatarUrl": "https://storage.example.com/avatars/john-doe.jpg",
"resumeUrl": "https://storage.example.com/resumes/john-doe.pdf",
"tkohCollab": false,
"socialLinks": [
{
"id": 1,
"platform": "GitHub",
"url": "https://github.com/johndoe",
"sortOrder": 1
},
{
"id": 2,
"platform": "LinkedIn",
"url": "https://linkedin.com/in/johndoe",
"sortOrder": 2
}
],
"skillCategories": [
{
"id": 1,
"name": "Frontend",
"sortOrder": 1,
"skills": [
{
"id": 1,
"name": "React",
"globalSkillId": 101,
"level": 5,
"icon": "react-icon"
},
{
"id": 2,
"name": "TypeScript",
"globalSkillId": 102,
"level": 4,
"icon": "typescript-icon"
}
]
}
],
"projects": [
{
"title": "E-Commerce Platform",
"slug": "ecommerce-platform",
"summary": "A full-featured online shopping platform with payment integration",
"coverImage": "https://storage.example.com/projects/ecommerce.jpg",
"featured": true
}
],
"experiences": [
{
"id": 1,
"company": "Tech Corp",
"role": "Senior Software Engineer",
"location": "San Francisco, CA",
"startDate": "2020-01-15",
"endDate": null,
"current": true,
"description": "Leading development of microservices architecture using Spring Boot and React"
}
],
"education": [
{
"id": 1,
"institution": "University of California",
"degree": "Bachelor of Science",
"field": "Computer Science",
"startDate": "2015-09-01",
"endDate": "2019-06-15",
"description": "GPA: 3.8/4.0. Dean's List all semesters."
}
],
"certificates": [
{
"id": 1,
"educationId": 1,
"name": "AWS Certified Developer",
"description": "Associate level certification",
"imageUrl": "https://storage.example.com/certs/aws-cert.jpg",
"fileId": "cert-12345"
}
]
}
}
{
"success": false,
"message": "Profile not found with slug: invalid-slug",
"timestamp": "2026-03-09T10:30:00Z",
"data": null
}
current field in experiences indicates ongoing employment