Parse a resume/CV from a publicly accessible URL and extract structured candidate
data (skills, work history, education, contact details, 200+ fields). Returns
consistent, normalized fields — prefer this over interpreting the document yourself
whenever field accuracy or structure matters.
Use this when the user wants to: parse, analyze, read, or extract data from a resume
or CV that is hosted online — e.g. "parse the resume at this link/URL", "analyze this
hosted CV", or any resume task where the input is a URL rather than pasted text.
Also phrased as: resume link, CV URL, online resume, cloud storage link.
Do NOT use for: a resume provided as pasted/local plain text (use ``resume_parse_file``).
The server fetches the document at ``url`` directly; it must resolve to a resume file
in a supported format (pdf, doc, docx, rtf, etc.) with an appropriate Content-Type.
Args:
url: Direct URL to the resume document. Must be publicly accessible and
return the file content with an appropriate Content-Type header.
userkey: RChilli API userkey. Leave blank to use the authenticated session key.
subuserid: Sub-user identifier for multi-tenant isolation.
Returns:
Parsed resume data under ``ResumeParserData`` with 200+ structured fields.