Live
get_headline_cpi_series
statssa.gov.zaReturns the full monthly CPS00000 headline consumer price index series from https://www.statssa.gov.za with index values and year-over-year changes from January 2008.
Parameters2
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_headline_cpi_series?
Returns the full monthly CPS00000 headline consumer price index series from https://www.statssa.gov.za with index values and year-over-year changes from January 2008. 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>",
"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
}
],
"series_title": "<string>",
"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/28647636-db9e-40e5-afdc-da147a7ba3cc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "28647636-db9e-40e5-afdc-da147a7ba3cc",
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="28647636-db9e-40e5-afdc-da147a7ba3cc") — the "get_headline_cpi_series" function, which returns the full monthly CPS00000 headline consumer price index series from https://www.statssa.gov.za with index values and year-over-year changes from January 2008.. It takes start_period (str), end_period (str). Return the result as structured JSON.