GET/resumes/:resumeId

Get Resume

Get full resume details including parsed metadata, skills, and experience.

πŸ”’ Scope required: read or resume:read

Path Parameters

ParameterTypeRequiredDescription
resumeIdstringβœ…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

StatusError
404Resume not found (wrong ID or doesn’t belong to your tenant)
Aram by ScootSign docs.scootsign.com