# GET /resume/:resumeID

GET Resume (JSON format) from Resume ID

## Get specific resume in JSON format

<mark style="color:blue;">`GET`</mark> `https://open-api.rezi.ai/v1/resume/:resumeID`

#### Path Parameters

| Name                                       | Type   | Description |
| ------------------------------------------ | ------ | ----------- |
| resumeID<mark style="color:red;">\*</mark> | String | Resume ID   |

#### Query Parameters

| Name     | Type   | Description                                                                           |
| -------- | ------ | ------------------------------------------------------------------------------------- |
| listType | String | "array" or null to get the id of section Item. See Resume Object for more information |

#### Headers

| Name                                             | Type   | Description                                                                                                                                               |
| ------------------------------------------------ | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Authentication<mark style="color:red;">\*</mark> | String | <p>"Bearer PRIVATE\_TOKEN\_API\_KEY" <br>Authentication token to secure and track down your usage. Use this specific format with your Private API key</p> |

{% tabs %}
{% tab title="200: OK success" %}

```javascript
{
    "status": "success",
    "data": resumeObject
}
```

{% endtab %}

{% tab title="500: Internal Server Error " %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="401: Unauthorized Token is not authorized" %}

```javascript
{
    "code": 401,
    "message": "Jwt verification fails"
}
```

{% endtab %}

{% tab title="204: No Content " %}

```javascript
{
    status: 'No content',
    message: 'resume not found',
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://rezi-1.gitbook.io/rms-guide/rezi-api/resume/get-resume-resumeid.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
