API Guide
  1. Malaysia
API Guide
  • Get Started
  • Document AI
    • Malaysia
      • Extract Bank Statement Data
        POST
      • Extract Bill of Lading Data
        POST
      • Extract Business Card Data
        POST
      • Extract Car Meter Data
        POST
      • Extract Cheque (Front) Data
        POST
      • Extract Company Financial Statement Data
        POST
      • Extract Resume Data
        POST
      • Extract E-Invoice Data
        POST
      • Extract Electricity Bill Data
        POST
      • Extract Identity Card Data
        POST
      • Extract Internet Bill Data
        POST
      • Extract Invoice Data
        POST
      • Extract Passport Data
        POST
      • Extract Payslip Data
        POST
      • Extract Price Tag Data
        POST
      • Extract Purchase Order Data
        POST
      • Extract Receipt (General) Data
        POST
      • Extract SSM Documents Data
        POST
      • Extract Water Bill Data
        POST
    • Thailand
      • Extract Business Card Data
      • Extract Identity Card Data
      • Extract Passport Data
      • Extract Receipt Data
    • Vietnam
      • Extract Business Card Data
      • Extract Identity Card Data
      • Extract Passport Data
      • Extract Receipt Data
    • Philippines
      • Extract Business Card Data
      • Extract Identity Card Data
      • Extract Passport Data
      • Extract Receipt Data
  1. Malaysia

Extract Resume Data

POST
/document-ai/{model-id}

Extracted Data Types#

The following types will always be present in the API response. If a type parameter is not found in the input, its value will be null.
Parameter NameVariable Type
personal_detailsobject
personal_details.namestring | null
personal_details.date_of_birthstring | null
personal_details.nationalitystring | null
personal_details.genderstring | null
personal_details.emailstring | null
personal_details.contact_numberstring | null
languages[]Array of Objects
languages[].languagestring | null
languages[].proficiencystring | null
educations[]Array of Objects
educations[].field_of_studystring | null
educations[].institutionstring | null
educations[].start_datestring | null
educations[].end_datestring | null
educations[].CGPAstring | null
work_experiences[]Array of Objects
work_experiences[].job_titlestring | null
work_experiences[].company_namestring | null
work_experiences[].locationstring | null
work_experiences[].start_datestring | null
work_experiences[].end_datestring | null
work_experiences[].responsibilitiesstring | null
certifications[]Array of Objects
certifications[].certification_namestring | null
certifications[].issuing_organizationstring | null
certifications[].issue_datestring | null
certifications[].expiry_datestring | null
technical_skills[]Array of strings
soft_skills[]Array of strings
references[]Array of Objects
references[].namestring | null
references[].positionstring | null
references[].contact_numberstring | null
references[].emailstring | null

Notes#

Each type parameter in the data array will always have the specified type, with the possibility of being null.
If a specific type parameter is not present in the input, its value in the response will be null.

Request

Authorization
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
Path Params

Body Params multipart/form-data

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.axtraction.ai/v1/document/document-ai/model-a1b2c3d4e5f6' \
--header 'X-API-KEY;' \
--form 'file=@""' \
--form 'fileBase64="JVBERi0xLjMNCiXi48/...."' \
--form 'mimeType="application/pdf"'

Responses

🟢200Success
application/json
Body

Example
{
    "success": true,
    "data": [
        {
            "type": "personal_details",
            "value": {
                "name": "Jane Doe",
                "date_of_birth": "1990-01-01",
                "nationality": "American",
                "gender": "Female",
                "email": "janedoe@example.com",
                "contact_number": "1234567890"
            }
        },
        {
            "type": "languages",
            "value": [
                {
                    "language": "English",
                    "proficiency": "Fluent"
                },
                {
                    "language": "Spanish",
                    "proficiency": "Intermediate"
                }
            ]
        },
        {
            "type": "educations",
            "value": [
                {
                    "field_of_study": "Computer Science",
                    "institution": "XYZ University",
                    "start_date": "2008-09-01",
                    "end_date": "2012-05-31",
                    "CGPA": "3.8"
                }
            ]
        },
        {
            "type": "work_experiences",
            "value": [
                {
                    "job_title": "Software Engineer",
                    "company_name": "ABC Tech",
                    "location": "New York, USA",
                    "start_date": "2013-06-01",
                    "end_date": "2018-12-31",
                    "responsibilities": "Developed web applications, managed databases, and collaborated with the product team."
                },
                {
                    "job_title": "Senior Software Engineer",
                    "company_name": "Tech Solutions",
                    "location": "San Francisco, USA",
                    "start_date": "2019-01-01",
                    "end_date": "Present",
                    "responsibilities": "Led a team of developers, optimized performance, and designed scalable systems."
                }
            ]
        },
        {
            "type": "certifications",
            "value": [
                {
                    "certification_name": "AWS Certified Solutions Architect",
                    "issuing_organization": "Amazon Web Services",
                    "issue_date": "2021-06-15",
                    "expiry_date": "2024-06-15"
                }
            ]
        },
        {
            "type": "technical_skills",
            "value": [
                "JavaScript",
                "Node.js",
                "React",
                "AWS",
                "Docker"
            ]
        },
        {
            "type": "soft_skills",
            "value": [
                "Communication",
                "Leadership",
                "Problem-solving",
                "Time Management"
            ]
        },
        {
            "type": "references",
            "value": [
                {
                    "name": "John Smith",
                    "position": "Manager",
                    "contact_number": "9876543210",
                    "email": "johnsmith@example.com"
                }
            ]
        }
    ],
    "miscellaneous": {
        "processedTime": 19.548214917
    }
}
Modified at 2025-08-04 03:23:13
Previous
Extract Company Financial Statement Data
Next
Extract E-Invoice Data
Built with