get_sa_manufacturing_production_index
statssa.gov.zaReturns the full monthly South African manufacturing production index series (2019=100), including actual index values and year-over-year changes, from https://www.statssa.gov.za. Defaults to publication P3041.2 series MPI30000 from January 1998 through the latest release.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_sa_manufacturing_production_index?
Returns the full monthly South African manufacturing production index series (2019=100), including actual index values and year-over-year changes, from https://www.statssa.gov.za. Defaults to publication P3041.2 series MPI30000 from January 1998 through the latest release. 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>",
"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
}
],
"estimate_type": "<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/83980dbf-f79a-4295-870c-5833651fee1b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "83980dbf-f79a-4295-870c-5833651fee1b",
"variables": {
"start_period": "1998-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="83980dbf-f79a-4295-870c-5833651fee1b") — the "get_sa_manufacturing_production_index" function, which returns the full monthly South African manufacturing production index series (2019=100), including actual index values and year-over-year changes, from https://www.statssa.gov.za. Defaults to publication P3041.2 series MPI30000 from January 1998 through the latest release.. It takes start_period (str), end_period (str). Return the result as structured JSON.