Docs/Empresa
Empresa
Consulte dados cadastrais da empresa autenticada e o saldo disponível para operações.
Ver requisitos de autenticaçãoHeaders
X-Api-Key
stringobrigatóriochave da empresa
X-Api-Secret
stringobrigatóriosecret da empresa
Content-Type
stringobrigatórioapplication/json
curl
curl -X GET "https://api.aurepay.com.br/v1/company" \
-H "X-Api-Key: pk_live_******" \
-H "X-Api-Secret: sk_live_******"200Response
{
"success": true,
"data": {
"id": "01K6C4M0M4G6T3T1J4YH9N2R8A",
"logoUrl": "https://cdn.aurepay.com.br/v1/static/companies/01K6C4M0M4G6T3T1J4YH9N2R8A/logo/01K6C4Q0Y9X5H8A6D3W1N7L2P4.jpg",
"taxId": "12345678000191",
"tradeName": "Nebula Finance",
"legalName": "NEBULA FINANCE PAGAMENTOS LTDA",
"email": "contato@nebulafinance.com.br",
"phone": "+5511398765432",
"website": "https://nebulafinance.com.br",
"address": {
"line1": "Av. Paulista, 1842",
"line2": "Conjunto 121",
"district": "Bela Vista",
"city": "São Paulo",
"state": "SP",
"postalCode": "01310-923",
"countryCode": "BR"
},
"settings": {
"ipEnabled": true,
"ipAddresses": [
"201.45.118.11/32",
"201.45.118.12/32"
],
"autoApproveWithdrawals": false
},
"balance": {
"total": 913430,
"blocked": 12000,
"available": 913430
},
"updatedAt": "2026-03-26T10:17:12.174Z",
"createdAt": "2025-10-03T14:20:19.331Z"
}
}401Error
{
"error": {
"code": "INVALID_SESSION",
"message": "Sessão inválida."
},
"success": false
}Headers
X-Api-Key
stringobrigatóriochave da empresa
X-Api-Secret
stringobrigatóriosecret da empresa
Content-Type
stringobrigatórioapplication/json
curl
curl -X GET "https://api.aurepay.com.br/v1/company/balance" \
-H "X-Api-Key: pk_live_******" \
-H "X-Api-Secret: sk_live_******"200Response
{
"success": true,
"data": {
"balance": {
"total": 913430,
"blocked": 12000,
"available": 913430
},
"currency": "brl"
}
}401Error
{
"error": {
"code": "INVALID_SESSION",
"message": "Sessão inválida."
},
"success": false
}