GDP Growth Rate
Retrieve Pakistan's GDP growth rates including year-over-year (YoY), quarter-over-quarter (QoQ), and month-over-month (MoM) growth percentages across real and nominal terms.
Description
This endpoint returns Pakistan's GDP sectoral composition for a given year, detailing the percentage share of each major sector in the total GDP. The response includes an array of sector objects, each with a sector name and its corresponding GDP share, as well as the total percentage. This data enables users to analyze the contribution of different sectors—such as finance, government services, housing, trade, and transport—to the country's overall economic output. All figures are sourced from the Pakistan Bureau of Statistics and the State Bank of Pakistan.
Request
Authentication
- Type: Bearer Token
- Required: Yes
Parameters
This endpoint does not accept any query parameters.
Response
Success Response (200)
{
"status": "ok",
"message": "",
"data": [
{
"year": "2025",
"sectors": [
{
"key": "finance and insurance",
"value": 1.45,
},
{
"key": "general government services",
"value": 18.2,
},
{
"key": "housing services",
"value": 58.3,
},
{
"key": "other private services",
"value": 12.1,
},
{
"key": "transport, storage and communication",
"value": 4.75,
},
{
"key": "wholesale and retail trade",
"value": 5.6,
}
],
"total": 58.39,
}
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
year | string | Fiscal year of the observation |
sectors | array | Array of sector objects (see below) |
total | number | Total percentage share across all sectors |
Sector Object
| Field | Type | Description |
|---|---|---|
key | string | Sector name |
value | number | Percentage share of GDP |
Error Responses
For detailed Common Error responses, see the Error Handling.
Examples
Get Latest GDP Growth Rate
curl -X GET "https://csapis.com/3.0/economy/gdp-growth" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Use Cases
- Economic Monitoring: Track real-time GDP growth trends
- Business Planning: Use growth rates for revenue forecasting and strategic planning
- Investment Analysis: Incorporate GDP growth in valuation models
- Policy Analysis: Evaluate the effectiveness of economic policies
- Comparative Analysis: Compare Pakistan's growth with regional and global benchmarks