# Batch Parse Multiple Resumes

**Use case:** 

Parse two resumes at once into structured candidate profiles so recruiters compare applicants side by side quickly.

## Input

```json
{
  "resumes": [
    {
      "text": "Sara Lopez, Austin TX. Product Designer. Experience: Product Designer at Figma 2021 to present. UX Designer at Dropbox 2018 to 2021. Skills: Figma, prototyping, user research. BFA Design, RISD."
    },
    {
      "text": "Tom Becker, Berlin DE. Data Analyst. Experience: Data Analyst at Zalando 2020 to present. Analyst at N26 2017 to 2020. Skills: SQL, Python, Tableau, statistics. BSc Statistics, TU Munich."
    }
  ],
  "maxItems": 2
}
```

## 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.