We provide protocol analysis and interface implementation for FGTS mobile apps: balance queries, withdrawal (Saque) applications, account registration, authorization consent, and report export, all delivered with compliance and privacy by design.
POST /api/v1/fgts/balance
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>
{
"cpf": "123.456.789-09",
"account_id": "conta_fgts_001"
}
Response:
{
"status": "OK",
"accounts": [
{
"account_id": "conta_fgts_001",
"balance": 12500.75,
"available_for_withdrawal": 5000.00,
"last_update": "2025-10-12T08:30:00Z"
}
]
}
POST /api/v1/fgts/withdrawal-request
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: application/json
{
"cpf": "123.456.789-09",
"account_id": "conta_fgts_001",
"reason": "Saque Aniversário",
"amount": 3000.00,
"destination_bank": {
"bank_code": "001",
"agency": "1234",
"account": "00012345-6",
"holder_name": "FULANO DE TAL"
},
"documents": ["doc1_base64", "doc2_base64"]
}
Response: { "request_id": "RQ-20251012-0001", "status": "SUBMITTED" }
We are a studio focused on App protocol analysis and compliant API integration. Our team comes from fintech, banking, and security backgrounds, delivering end-to-end solutions with a focus on compliance and security.
If you need a quote, want to submit FGTS integration requirements or request a demonstration, please visit our contact page:
FGTS App offers conveniences for workers, including checking FGTS balance, employer contribution reconciliation, printing statement summaries, and options for birthday withdrawals. All FGTS withdrawals allowed by law can be processed through the app; eligible users can submit applications within the app.
This content is a translated summary of FGTS app features to facilitate technical integration and mapping.