# Eurostat Construction Production — Monthly, Per Record (`nexgensignal/eurostat-construction-production`) Actor

Official Eurostat construction production statistics as per-record data — monthly short-term business indicators by activity, basis, and adjustment, verbatim from the source. No API key. Pay per record. Part of NexGen Signal — official-source data products.

- **URL**: https://apify.com/nexgensignal/eurostat-construction-production.md
- **Developed by:** [NexGen Signal](https://apify.com/nexgensignal) (community)
- **Categories:** Business, Real estate, News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $33.50 / 1,000 construction production records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Eurostat Construction Production — Monthly, Per Record

**Official source. No API key. Pay per record.**

This actor turns Eurostat's construction production statistics (dataset sts\_copr\_m) into clean, per-record data. Each run reads the figures directly from Eurostat's public JSON-stat dissemination API and delivers one record per observation — the country, the construction activity (NACE Rev.2), the basis type, the seasonal-adjustment variant, the unit, the month, and the value, verbatim from the source. These are short-term business indicators for the construction sector (index levels and rates of change), published monthly. Nothing is modelled, rescaled, or reinterpreted; where a value is missing at source, no row is invented.

### Who buys this and for what job

- **Construction and real-estate analysts** tracking building-sector output across EU markets each month.
- **Economists and macro teams** feeding official short-term construction indicators into models.
- **Researchers and journalists** who need the exact monthly index and rate-of-change figures with provenance.
- **Data engineers** wanting a keyless, one-call monthly series for a pipeline.

The job it does: get the official construction production series as rows — reliably, with provenance, and without an account or key at the source.

### Pricing

Pay per event. One event: a delivered record. Tiered by your Apify plan; the record is delivered before it is charged. No start fee, no subscription. Blocked runs and empty results cost nothing.

| Event | Free plan | Bronze | Silver | Gold / Platinum / Diamond |
|-------|-----------|--------|--------|---------------------------|
| `construction_production_record` | $0.05 | $0.045 | $0.04 | $0.0335 |

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `sinceTimePeriod` | string | `2024` | Earliest period to return. Earlier start = more history and more records. |
| `maxRecords` | integer | `500` | Ceiling on records delivered and billed. The default is a fast bounded sample; raise it to pull the full set. |

Both are optional; the default run is a bounded sample that finishes quickly so you can see the shape before scaling up.

### Output

One JSON object per observation. Every dimension is emitted as a code and a label, both verbatim from Eurostat; a composite `record_id` uniquely identifies each row so no two source observations collapse together. Example record from a real run:

```json
{
  "record_id": "M:PRD:B-D_F:CA:I21:AT:2024-01",
  "dataset_code": "sts_copr_m",
  "indicator": "Construction production",
  "freq": "M",
  "freq_label": "Monthly",
  "indic_bt": "PRD",
  "indic_bt_label": "Production (volume)",
  "nace_r2": "B-D_F",
  "nace_r2_label": "Mining and quarrying; manufacturing; electricity, gas, steam and air conditioning supply; construction",
  "s_adj": "CA",
  "s_adj_label": "Calendar adjusted data, not seasonally adjusted data",
  "unit": "I21",
  "unit_label": "Index, 2021=100",
  "geo": "AT",
  "geo_label": "Austria",
  "time": "2024-01",
  "time_label": "2024-01",
  "value": 84.4,
  "obs_status": null,
  "source": "Eurostat",
  "source_dataset": "sts_copr_m",
  "licence": "Eurostat, CC BY 4.0. Reformatted from Eurostat JSON-stat; values unmodified. Third-party content and logos excluded. Commercial-barred geographies removed.",
  "attribution": "Source: Eurostat (dataset sts_copr_m)",
  "caveat": "Short-term business statistics — basis, adjustment, and unit reproduced verbatim. Index and rate-of-change series, not currency values or forecasts. Monthly cadence; recent months may be revised.",
  "observed_at": "2026-08-17T00:00:00Z"
}
```

Every run also writes an unbilled `RUN_RECEIPT` to the run's key-value store: the robots check, the source URL, how many observations were present, delivered, excluded as missing or as commercial-barred geographies, and whether charged equals delivered.

### Cost guidance

One `construction_production_record` is billed per delivered observation, so cost = records pulled × your plan's per-record price. The full permitted set from `2024` is roughly **17,540** records — about **$877** on the Free-plan rate, or about **$588** at the Gold-tier rate. A default 500-record sample is about **$25** (Free) or **$16.75** (Gold). You control volume with `sinceTimePeriod` and `maxRecords`.

### Honest limitations and caveats

- It is an index / rate-of-change series, not a value in euros and not a forecast.
- Cadence: monthly. Recent months are frequently provisional and revised in later releases (living source).
- Basis, seasonal-adjustment, and unit variants are distinct rows; read those fields before comparing.
- Related to the fleet-2 industrial-production and services-production actors on a different storefront; this is construction specifically — cross-fleet dedupe-checked, no row overlap.
- **Coverage is licence-limited by design.** Eurostat permits commercial reuse only for EU, EFTA, and official acceding/candidate countries; geographies outside that set are excluded at ingest and counted in the run receipt. This is a compliance choice, not a data gap.
- **Missing observations are excluded, never invented;** published zeros are kept as real values.
- **Values, units, statuses, and dimension codes are reproduced verbatim** — never rescaled, relabelled, or re-derived.

### The NexGen Signal family

Part of the NexGen Signal family of official-source, per-record Eurostat products. Its live siblings on the store — all official-source, no API key, values verbatim, pay per record:

- [Eurostat House Price Index](https://apify.com/nexgensignal/eurostat-house-price-index)
- [Eurostat Waste Generation](https://apify.com/nexgensignal/eurostat-waste-generation)
- [Eurostat Waste Treatment](https://apify.com/nexgensignal/eurostat-waste-treatment)
- [Eurostat Business & Consumer Confidence](https://apify.com/nexgensignal/eurostat-business-confidence)
- [Eurostat Income Distribution (EU-SILC)](https://apify.com/nexgensignal/eurostat-income-distribution)

*Source: Eurostat. Reformatted from the Eurostat JSON-stat dissemination API; values unmodified. Third-party content and logos excluded. Data for geographies outside EU/EFTA/candidate countries is excluded in line with Eurostat's reuse terms.*

# Actor input Schema

## `sinceTimePeriod` (type: `string`):

Return observations from this period onward (e.g. 2024). Earlier = more records.

## `maxRecords` (type: `integer`):

Maximum records delivered and billed. You are billed only for records delivered. Raise to pull the full set.

## Actor input object example

```json
{
  "sinceTimePeriod": "2024",
  "maxRecords": 500
}
```

# Actor output Schema

## `results` (type: `string`):

The delivered Construction production records.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "sinceTimePeriod": "2024",
    "maxRecords": 500
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgensignal/eurostat-construction-production").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "sinceTimePeriod": "2024",
    "maxRecords": 500,
}

# Run the Actor and wait for it to finish
run = client.actor("nexgensignal/eurostat-construction-production").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "sinceTimePeriod": "2024",
  "maxRecords": 500
}' |
apify call nexgensignal/eurostat-construction-production --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,nexgensignal/eurostat-construction-production"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/cn2aK1XemvtjxHc7a/builds/5ifvHTqGBxxKabEax/openapi.json
