> For the complete documentation index, see [llms.txt](https://hirize.gitbook.io/hirize/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hirize.gitbook.io/hirize/documents/editor.md).

# Resume Parser

The Hirize Resume Parser can parse resumes of varying formats (PDF, JPG, PNG), and has OCR capabilities. You can also define a webhook in the control panel and make async requests to the API. Please create an endpoint for the product in the endpoints section at[ https://app.hirize.hr](https://app.hirize.hr)

Resume parsing isn't charged multiple times when used in other API endpoints. A checksum is created and checked to prevent it.

### <mark style="color:yellow;">POST</mark> Parser Request&#x20;

```
{{main_url}}/api/public/parser
```

Payload should be a raw Base64 string.

**Authorization** <mark style="color:blue;">API Key</mark>

```
Key      api_key
Value    {{parser_api_key}}
```

**Body raw** (json)

```json
{
  "payload": {{payload}},
  "file_name": "william-bill-gates.pdf"
}
```

### <mark style="color:green;">GET</mark> Parser Detail

```
{{main_url}}/api/public/parser/1364
```

Make a request with the id returned through the POST request.

```
Key      api_key
Value    {{parser_api_key}}
```

### Query Params

<mark style="color:green;background-color:yellow;">api\_key</mark>
