GET
/resumesList Resumes
Paginated list of parsed resumes for your tenant.
🔒 Scope required: read or resume:read
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | string | "1" | Page number |
limit | string | "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
}
}