> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tallentu.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Obter Candidatura

Retorna os detalhes de uma candidatura específica.

## Path Parameters

<ParamField path="id" type="string" required>
  O ID da vaga.
</ParamField>

<ParamField path="candidate_id" type="string" required>
  O ID do candidato.
</ParamField>

## Response

<ResponseField name="name" type="string">
  Nome do candidato.
</ResponseField>

<ResponseField name="email" type="string">
  Email do candidato.
</ResponseField>

<ResponseField name="phone" type="string">
  Telefone do candidato.
</ResponseField>

<ResponseField name="linked_in" type="string">
  Perfil do LinkedIn.
</ResponseField>

<ResponseField name="city" type="string">
  Cidade.
</ResponseField>

<ResponseField name="region" type="string">
  Estado/Região.
</ResponseField>

<ResponseField name="country" type="string">
  País.
</ResponseField>

<ResponseField name="summary" type="string">
  Resumo profissional.
</ResponseField>

<ResponseField name="position" type="string">
  Cargo atual/último.
</ResponseField>

<ResponseField name="education" type="array">
  Histórico educacional.
</ResponseField>

<ResponseField name="experience" type="array">
  Experiência profissional.
</ResponseField>

<ResponseField name="stage_id" type="string">
  ID da etapa atual.
</ResponseField>

<ResponseField name="stage_title" type="string">
  Título da etapa atual.
</ResponseField>

<ResponseField name="score" type="number">
  Pontuação do candidato.
</ResponseField>

<ResponseField name="created_at" type="string">
  Data da candidatura.
</ResponseField>

<ResponseField name="resume_url" type="string">
  URL para visualização do currículo (PDF).
</ResponseField>

<ResponseField name="video_url" type="string">
  URL do vídeo de apresentação (se houver).
</ResponseField>

<ResponseField name="evaluations" type="array">
  Avaliações do candidato.
</ResponseField>

<RequestExample>
  ```bash Curl theme={null}
  curl -X GET "https://api.tallentu.com/v1/jobs/job_123/applications/user_123" \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "user_id": "user_123",
    "name": "John Doe",
    "email": "john@example.com",
    "phone": "+5511999999999",
    "linked_in": "linkedin.com/in/johndoe",
    "city": "São Paulo",
    "region": "SP",
    "country": "Brasil",
    "position": "Frontend Developer",
    "stage_id": "col_123",
    "stage_title": "Interview",
    "score": 85,
    "created_at": "2023-10-27T10:00:00.000Z",
    "resume_url": "https://...",
    "video_url": null,
    "education": [],
    "experience": [],
    "evaluations": []
  }
  ```
</ResponseExample>
