Simular Empréstimo
curl --request POST \
--url https://api.example.com/api/v1/propostas/{nu_proposta}/simular \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"vl_emprestimo": 123,
"qt_parcela": 123
}
'import requests
url = "https://api.example.com/api/v1/propostas/{nu_proposta}/simular"
payload = {
"vl_emprestimo": 123,
"qt_parcela": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({vl_emprestimo: 123, qt_parcela: 123})
};
fetch('https://api.example.com/api/v1/propostas/{nu_proposta}/simular', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"vl_emprestimo": 10000.00,
"qt_parcela": 36,
"vl_parcela": 398.50,
"vl_liberado": 9250.00,
"vl_taxa_mensal": 2.49,
"tx_cet_anual": 34.82,
"dt_primeiro_vencimento": "2026-09-05"
}
Propostas
Simular Empréstimo
Simule as condições financeiras antes de formalizar o contrato
POST
/
api
/
v1
/
propostas
/
{nu_proposta}
/
simular
Simular Empréstimo
curl --request POST \
--url https://api.example.com/api/v1/propostas/{nu_proposta}/simular \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"vl_emprestimo": 123,
"qt_parcela": 123
}
'import requests
url = "https://api.example.com/api/v1/propostas/{nu_proposta}/simular"
payload = {
"vl_emprestimo": 123,
"qt_parcela": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({vl_emprestimo: 123, qt_parcela: 123})
};
fetch('https://api.example.com/api/v1/propostas/{nu_proposta}/simular', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"vl_emprestimo": 10000.00,
"qt_parcela": 36,
"vl_parcela": 398.50,
"vl_liberado": 9250.00,
"vl_taxa_mensal": 2.49,
"tx_cet_anual": 34.82,
"dt_primeiro_vencimento": "2026-09-05"
}
Simular Empréstimo
Obtenha as condições financeiras (parcela, taxas, CET) para a proposta antes da formalização.Todos os endpoints requerem autenticação via Bearer token no header
Authorization.
Consulte o guia de autenticação para obter suas credenciais e gerar um token.Parâmetros
integer
required
Número da proposta (retornado na criação)
number
required
Valor desejado
integer
required
Quantidade de parcelas
Exemplo
cURL
curl -X POST https://api.zipdin.com.br/api/v1/propostas/789456/simular \
-H "Authorization: Bearer SEU_TOKEN" \
-H "Content-Type: application/json" \
-d '{"vl_emprestimo": 10000.00, "qt_parcela": 36}'
{
"vl_emprestimo": 10000.00,
"qt_parcela": 36,
"vl_parcela": 398.50,
"vl_liberado": 9250.00,
"vl_taxa_mensal": 2.49,
"tx_cet_anual": 34.82,
"dt_primeiro_vencimento": "2026-09-05"
}
Valores da simulação são válidos por 24 horas. Após esse período, simule novamente.
