get_core_cpi_series
statssa.gov.zaReturns the full monthly core CPI series (CPS00014) from https://www.statssa.gov.za, ordered newest-first. Includes index values (Dec 2024=100) and year-over-year percentage changes for all urban areas.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_core_cpi_series?
Returns the full monthly core CPI series (CPS00014) from https://www.statssa.gov.za, ordered newest-first. Includes index values (Dec 2024=100) and year-over-year percentage changes for all urban areas. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass start_period, end_period and get the result back without maintaining a scraper.
Response
{
"unit": "<string>",
"title": "<string>",
"measure": "<string>",
"frequency": "<string>",
"index_base": "<string>",
"publication": "<string>",
"series_code": "<string>",
"observations": [
{
"year": 0,
"month": 0,
"period": "<string>",
"index_value": 0,
"year_over_year_percent_change": 0
}
],
"release_period": "<string>",
"observation_count": 0,
"geographic_coverage": "<string>",
"available_end_period": "<string>",
"available_start_period": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/9d33c5f0-9f13-4616-8767-4d22fbbd80b9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9d33c5f0-9f13-4616-8767-4d22fbbd80b9",
"variables": {
"start_period": "2008-01",
"end_period": "latest"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="9d33c5f0-9f13-4616-8767-4d22fbbd80b9") — the "get_core_cpi_series" function, which returns the full monthly core CPI series (CPS00014) from https://www.statssa.gov.za, ordered newest-first. Includes index values (Dec 2024=100) and year-over-year percentage changes for all urban areas.. It takes start_period (str), end_period (str). Return the result as structured JSON.