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

Retorna os detalhes de uma vaga específica.

## Path Parameters

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

## Response

<ResponseField name="title" type="string">
  O título da vaga.
</ResponseField>

<ResponseField name="description" type="string">
  A descrição da vaga em markdown.
</ResponseField>

<ResponseField name="status" type="string">
  O status atual da vaga (draft, published, closed, archived).
</ResponseField>

<ResponseField name="location" type="string">
  A localização da vaga.
</ResponseField>

<ResponseField name="created_at" type="string">
  Data de criação da vaga (ISO 8601).
</ResponseField>

<ResponseField name="total_applications" type="number">
  Número total de candidaturas recebidas.
</ResponseField>

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

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "job_123",
    "title": "Senior Frontend Developer",
    "description": "# Estamos buscando...",
    "status": "published",
    "location": "São Paulo, SP",
    "created_at": "2023-10-27T10:00:00.000Z",
    "total_applications": 42
  }
  ```
</ResponseExample>
