Resume Parser Request Parameters
Endpoint
https://gw.magicalapi.com/resume-parser
The Resume Parser service requires the following parameter in the request body:
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
url | string | Yes | URL to the resume document to be parsed | "https://example.com/upload/resume.docx" |
Sample Request Body
{
"url": "https://example.com/upload/f755e241-277d-x2s2-asd2-ef2d6cf15617.docx"
}
tip
Make sure to:
- Use a publicly accessible URL
- Supported file formats: PDF, DOC, and DOCX
- Maximum file size: 10MB
Example Workflow
- Send Initial Request
curl -X POST "https://gw.magicalapi.com/resume-parser" \
-H "Content-Type: application/json" \
-H "api-key: YOUR-API-KEY" \
-d '{"url": "https://example.com/upload/resume.docx"}'
- Check Status (using the same endpoint)
curl -X POST "https://gw.magicalapi.com/resume-parser" \
-H "Content-Type: application/json" \
-H "api-key: YOUR-API-KEY" \
-d '{"request_id": "abc123xyz"}'