Extract structured contact information from resumes.
POST/api/v1/parse
Upload a resume file (PDF, DOCX, DOC, TXT, RTF) and receive parsed contact data.
curl -X POST https://parser.sparqone.com/api/v1/parse \
-F "file=@resume.pdf"
{
"status": "success",
"data": {
"first_name": { "value": "John", "confidence": 0.95 },
"last_name": { "value": "Smith", "confidence": 0.95 },
"email": { "value": "john@example.com", "confidence": 1.0 },
"phone": { "value": "+1 (555) 123-4567", "confidence": 0.9 },
"address": {
"city": { "value": "San Francisco", "confidence": 0.85 },
"state": { "value": "CA", "confidence": 0.85 }
},
"social": {
"linkedin": { "value": "linkedin.com/in/johnsmith", "confidence": 1.0 }
}
}
}
| Format | Extension |
|---|---|
| Word | .docx, .doc |
| Plain Text | .txt |
| Rich Text | .rtf |
| Code | Meaning |
|---|---|
| 400 | Invalid file or unsupported format |
| 429 | Rate limit exceeded |
| 500 | Server error |