API Reference
Income Ceiling
Access CPF income ceiling data and historical timeline
Endpoints for retrieving CPF income ceiling information.
GET /ceiling
Get the CPF income ceiling for a specific date.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
date | string | No | Date in YYYY-MM-DD format (defaults to current date) |
Response
{
date: string; // The requested date
ceiling: number; // Income ceiling for that date (6000-8000)
}Example
curl "https://simplycpf.com/api/cpf/ceiling?date=2024-06-01"{
"date": "2024-06-01",
"ceiling": 6800
}GET /ceiling/timeline
Get the historical timeline of CPF income ceiling changes.
Response
Array<{
date: string; // Date of ceiling change
ceiling: number; // Income ceiling value
}>Example
curl https://simplycpf.com/api/cpf/ceiling/timeline[
{ "date": "2023-01-01", "ceiling": 6000 },
{ "date": "2023-09-01", "ceiling": 6300 },
{ "date": "2024-01-01", "ceiling": 6800 },
{ "date": "2025-01-01", "ceiling": 7400 },
{ "date": "2026-01-01", "ceiling": 8000 }
]Income Ceiling History
Following the Ministry of Finance announcement at Singapore Budget 2023, the CPF income ceiling is being progressively raised:
| Effective Date | Ceiling |
|---|---|
| Before Sep 2023 | $6,000 |
| Sep 2023 | $6,300 |
| Jan 2024 | $6,800 |
| Jan 2025 | $7,400 |
| Jan 2026 | $8,000 |