Skip to main content

Resume Review Request Parameters

Endpoint

https://gw.magicalapi.com/resume-review

The Resume Review service requires the following parameter in the request body:

ParameterTypeRequiredDescriptionExample
urlstringYesURL to the resume document to be reviewed"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

  1. Send Initial Request
curl -X POST "https://gw.magicalapi.com/resume-review" \
-H "Content-Type: application/json" \
-H "api-key: YOUR-API-KEY" \
-d '{"url": "https://example.com/upload/resume.docx"}'
  1. Check Status (using the same endpoint)
curl -X POST "https://gw.magicalapi.com/resume-review" \
-H "Content-Type: application/json" \
-H "api-key: YOUR-API-KEY" \
-d '{"request_id": "abc123xyz"}'