GET
/resumes/:resumeIdGet Resume
Get full resume details including parsed metadata, skills, and experience.
π Scope required: read or resume:read
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
resumeId | string | β | The resume ID |
Example
curl https://api.scootsign.com/api/v1/resumes/res_abc123 \
-H "X-API-Key: aram_ent_a1b2c3d4e5f6..."
Response
{
"success": true,
"data": {
"id": "res_abc123",
"fileName": "john_doe_resume.pdf",
"parseStatus": "COMPLETED",
"metadata": {
"name": "John Doe",
"email": "john@example.com",
"phone": "+91 98765 43210",
"skills": ["Node.js", "React", "PostgreSQL", "TypeScript", "Docker"],
"experience": "6 years",
"education": "B.Tech Computer Science, IIT Madras",
"certifications": ["AWS Solutions Architect"],
"summary": "Full-stack engineer with 6 years of experience..."
},
"createdAt": "2026-03-01T09:00:00.000Z"
}
}
Errors
| Status | Error |
|---|---|
404 | Resume not found (wrong ID or doesnβt belong to your tenant) |