curl --request POST \
--url https://api.paymee.com.br/v1.1/loans/simulation \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-token: <x-api-token>' \
--data '
{
"amount": 10000,
"customer": {
"address": {
"city": "City",
"complement": "Apt 4",
"number": "123",
"state": "ST",
"street": "Main Street",
"zipcode": "12345678"
},
"birth": "1980-01-01",
"document": {
"number": "00000000000",
"type": "CPF"
},
"email": "[email protected]",
"income": 5000,
"name": "John Doe",
"phone": "11999999999"
},
"products": [
{
"amount": 2,
"id": "prod1",
"name": "Product 1",
"value": 5000
}
],
"times": 12
}
'