Live
get_producer_price_index_series
statssa.gov.zaReturns the full monthly PPC30000 producer price index series from https://www.statssa.gov.za with index values and year-over-year changes from January 2012.
Parameters2
Runs8
Updated3d ago
Degraded8 runs · 75% 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_producer_price_index_series?
Returns the full monthly PPC30000 producer price index series from https://www.statssa.gov.za with index values and year-over-year changes from January 2012. 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>",
"category": "<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,
"available_end_period": "<string>",
"available_start_period": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/9f837a33-9a0f-44b8-b033-ef6dc91a15f4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9f837a33-9a0f-44b8-b033-ef6dc91a15f4",
"variables": {
"start_period": "2012-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="9f837a33-9a0f-44b8-b033-ef6dc91a15f4") — the "get_producer_price_index_series" function, which returns the full monthly PPC30000 producer price index series from https://www.statssa.gov.za with index values and year-over-year changes from January 2012.. It takes start_period (str), end_period (str). Return the result as structured JSON.