andreasjansson/resume-extractor

Public
6 runs

Run andreasjansson/resume-extractor with an API

Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.

Input schema

The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.

Field Type Default value Description
resume_pdf
string
Resume PDF file to extract data from
max_pages
integer
10
Maximum number of pages to process

Output schema

The shape of the response you’ll get when you run this model with an API.

Schema
{
  "type": "object",
  "title": "ResumeData",
  "required": [
    "contact_info",
    "work_experience",
    "education",
    "skills",
    "certifications",
    "languages"
  ],
  "properties": {
    "skills": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "title": "Skills"
    },
    "summary": {
      "type": "string",
      "title": "Summary",
      "nullable": true
    },
    "education": {
      "type": "array",
      "items": {
        "type": "object",
        "title": "Education",
        "required": [
          "institution",
          "degree"
        ],
        "properties": {
          "gpa": {
            "type": "string",
            "title": "Gpa",
            "nullable": true
          },
          "degree": {
            "type": "string",
            "title": "Degree"
          },
          "institution": {
            "type": "string",
            "title": "Institution"
          },
          "field_of_study": {
            "type": "string",
            "title": "Field Of Study",
            "nullable": true
          },
          "graduation_date": {
            "type": "string",
            "title": "Graduation Date",
            "nullable": true
          }
        }
      },
      "title": "Education"
    },
    "languages": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "title": "Languages"
    },
    "contact_info": {
      "type": "object",
      "title": "ContactInfo",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "title": "Name"
        },
        "email": {
          "type": "string",
          "title": "Email",
          "nullable": true
        },
        "phone": {
          "type": "string",
          "title": "Phone",
          "nullable": true
        },
        "address": {
          "type": "string",
          "title": "Address",
          "nullable": true
        },
        "website": {
          "type": "string",
          "title": "Website",
          "nullable": true
        },
        "linkedin": {
          "type": "string",
          "title": "Linkedin",
          "nullable": true
        }
      }
    },
    "certifications": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "title": "Certifications"
    },
    "work_experience": {
      "type": "array",
      "items": {
        "type": "object",
        "title": "WorkExperience",
        "required": [
          "company",
          "position",
          "start_date",
          "description"
        ],
        "properties": {
          "company": {
            "type": "string",
            "title": "Company"
          },
          "end_date": {
            "type": "string",
            "title": "End Date",
            "nullable": true
          },
          "location": {
            "type": "string",
            "title": "Location",
            "nullable": true
          },
          "position": {
            "type": "string",
            "title": "Position"
          },
          "start_date": {
            "type": "string",
            "title": "Start Date"
          },
          "description": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "title": "Description"
          }
        }
      },
      "title": "Work Experience"
    }
  }
}