# Resume Parser for Houston Job Applicants

**Use case:** 

Extract structured data from Houston resumes for recruitment purposes.

## Input

```json
{
  "maxResumes": 8,
  "resumes": [
    {
      "text": "SUSAN WILSON\nHouston, TX | susan.wilson@example.com | (713) 555-0167 | linkedin.com/in/susanwilson\n\nMarketing Specialist\n\nSUMMARY\nDynamic Marketing Specialist with 6 years of experience in digital marketing and brand management.\n\nSKILLS\nSEO, Content Marketing, Social Media, Google Analytics\n\nEXPERIENCE\nMarketing Specialist, Brand Agency (Jan 2019 - Present)\nImplemented marketing strategies that boosted brand awareness by 50%.\n\nMarketing Coordinator, Startup Co. (May 2016 - Dec 2018)\nCoordinated marketing campaigns and analyzed performance metrics.\n\nEDUCATION\nB.A. Marketing, University of Houston, 2015\n\nLINKS\nhttps://github.com/susanwilson"
    }
  ]
}
```

## Output

```json
{
  "fullName": {
    "label": "Name",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "experience": {
    "label": "Experience",
    "format": "array"
  },
  "education": {
    "label": "Education",
    "format": "array"
  },
  "links": {
    "label": "Links",
    "format": "array"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "truncated": {
    "label": "Truncated",
    "format": "boolean"
  },
  "observedAt": {
    "label": "Parsed at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tool: Resume & CV Parser to JSON](https://apify.com/scrapers_lat/resume-parser-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/resume-parser-tool) to learn more, explore other use cases, and run it yourself.