GET/resumes

List Resumes

Paginated list of parsed resumes for your tenant.

🔒 Scope required: read or resume:read

Query Parameters

ParameterTypeDefaultDescription
pagestring"1"Page number
limitstring"20"Results per page (max 100)

Example

curl "https://api.scootsign.com/api/v1/resumes?page=1&limit=10" \
  -H "X-API-Key: aram_ent_a1b2c3d4e5f6..."

Response

{
  "success": true,
  "data": [
    {
      "id": "res_abc123",
      "fileName": "john_doe_resume.pdf",
      "parseStatus": "COMPLETED",
      "metadata": {
        "skills": ["Node.js", "React", "PostgreSQL"],
        "experience": "6 years"
      },
      "createdAt": "2026-03-01T09:00:00.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 156,
    "pages": 16
  }
}
Aram by ScootSign docs.scootsign.com