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

# Consultar oferta

> Consulta uma oferta pelo seu ID

Consulta os detalhes de uma oferta pelo ID.

<Info>
  Todos os endpoints requerem autenticação via **Bearer token** no header `Authorization`.
  Consulte o [guia de autenticação](/docs/primeiros-passos/authentication) para obter suas credenciais e gerar um token.
</Info>

## Parâmetros

<ParamField path="id" type="integer" required>
  ID numérico da oferta
</ParamField>

## Exemplo

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET https://hml.zipdin.com.br/zipconsig-marketplace/offers/4521 \
    -H "Authorization: Bearer SEU_TOKEN"
  ```
</CodeGroup>

<ResponseExample>
  ```json 200 - Oferta theme={null}
  {
    "_embedded": {
      "id": 4521,
      "cpf": "52998224725",
      "loanValue": 10000.00,
      "installmentsNumber": 36,
      "status": "pending",
      "hasGuarantee": "false"
    },
    "_links": { "self": { "href": "/zipconsig-marketplace/offers/4521" } }
  }
  ```
</ResponseExample>
