# Resume Parser for San Francisco Candidates

**Use case:** 

Efficiently convert resumes from San Francisco into structured JSON profiles.

## Input

```json
{
  "maxResumes": 10,
  "resumes": [
    {
      "text": "JANE MARTINEZ\nSan Francisco, CA | jane.martinez@example.com | (415) 555-0198 | linkedin.com/in/janemartinez\n\nSenior Backend Engineer\n\nSUMMARY\nBackend engineer with 8 years building high-throughput payment and data platforms. Comfortable owning services end to end.\n\nSKILLS\nGo, Python, PostgreSQL, Kafka, AWS, Kubernetes, gRPC, Terraform\n\nEXPERIENCE\nStaff Engineer, Ramp (Jan 2021 - Present)\nLed the ledger service handling 4M transactions per day. Cut p99 latency by 40 percent. Mentored 5 engineers.\n\nSenior Software Engineer, Stripe (Jun 2017 - Dec 2020)\nBuilt fraud scoring pipelines in Go and Kafka. Owned the disputes API.\n\nEDUCATION\nB.S. Computer Science, University of California Berkeley, 2015\n\nLINKS\nhttps://github.com/janemartinez"
    }
  ]
}
```

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