# Incentivi PMI Italia — Bandi e agevolazioni (incentivi.gov.it) (`promptica/incentivi-pmi-italia`) Actor

Estrae bandi, agevolazioni e incentivi per PMI dal portale ufficiale incentivi.gov.it (MIMIT). Filtrabile per regione, settore/ambito, dimensione impresa, forma di agevolazione e scadenza. Zero PII, solo dati pubblici.

- **URL**: https://apify.com/promptica/incentivi-pmi-italia.md
- **Developed by:** [Lorenzo Talamucci](https://apify.com/promptica) (community)
- **Categories:** Other
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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

## Incentivi PMI Italia — Bandi e agevolazioni (incentivi.gov.it)

Estrae bandi, agevolazioni e incentivi per PMI dal portale ufficiale **incentivi.gov.it** (MIMIT — Ministero delle Imprese e del Made in Italy).

Ideale per **consulenti di finanza agevolata**, commercialisti e associazioni di categoria che monitorano nuovi bandi filtrabili per regione, settore, dimensione d'impresa e tipo di agevolazione.

### Fonte dati

- **URL**: https://www.incentivi.gov.it
- **Endpoint Solr** (pubblico, senza autenticazione): `https://www.incentivi.gov.it/solr/coredrupal/select`
- **ToS / robots.txt**: nessuna restrizione sul path `/solr/`; dati istituzionali pubblici del Governo Italiano (MIMIT)
- **Totale record disponibili**: ~5 700 bandi (al 2026-07-09)

### Esempio di record reale

Query eseguita il 2026-07-09:

````

GET https://www.incentivi.gov.it/solr/coredrupal/select?q=*:*\&rows=1\&wt=json\&fl=zs\_nid,zs\_title,zs\_url,zs\_field\_open\_date,zs\_field\_close\_date,zm\_field\_regions\_value,zm\_field\_scopes\_value,zm\_field\_dimensions\_value,zm\_field\_support\_form\_value,zs\_field\_budget\_allocation,zs\_field\_cost\_min,zs\_field\_cost\_max,zs\_field\_subject\_grant,zs\_field\_ateco,zs\_field\_link\&fq=index\_id:incentivi

````

Risposta (campo `docs[0]`):

```json
{
  "zs_nid": "1423",
  "zs_title": "Partecipazione alla Fiera Internazionale del Libro - Buchmesse Francoforte 2023 - Regione Lazio",
  "zs_url": "/it/catalogo/partecipazione-alla-fiera-internazionale-del-libro-buchmesse-francoforte-2023-regione",
  "zs_field_open_date": "2023-09-08T00:00:00",
  "zs_field_close_date": "2023-12-23T00:00:00",
  "zm_field_regions_value": ["Lazio"],
  "zm_field_scopes_value": ["Internazionalizzazione"],
  "zm_field_dimensions_value": ["Media Impresa", "Microimpresa", "Piccola Impresa"],
  "zm_field_support_form_value": ["Contributo/Fondo perduto"],
  "zs_field_budget_allocation": "36664",
  "zs_field_cost_min": "0",
  "zs_field_cost_max": "1000",
  "zs_field_subject_grant": "Lazio Innova S.p.a.",
  "zs_field_ateco": "Tutti i settori economici ammissibili a ricevere aiuti;",
  "zs_field_link": "https://www.regione.lazio.it/notizia/fiera-internazionale-libro-francoforte"
}
````

Record normalizzato in output dall'Actor:

```json
{
  "id": "1423",
  "titolo": "Partecipazione alla Fiera Internazionale del Libro - Buchmesse Francoforte 2023 - Regione Lazio",
  "regioni": ["Lazio"],
  "ambiti": ["Internazionalizzazione"],
  "dimensioniImpresa": ["Media Impresa", "Microimpresa", "Piccola Impresa"],
  "formeAgevolazione": ["Contributo/Fondo perduto"],
  "dataApertura": "2023-09-08",
  "dataScadenza": "2023-12-23",
  "statoScadenza": "Scaduto",
  "budgetEuro": 36664,
  "contributoMinEuro": 0,
  "contributoMaxEuro": 1000,
  "soggettoErogatore": "Lazio Innova S.p.a.",
  "codiciAteco": "Tutti i settori economici ammissibili a ricevere aiuti;",
  "linkScheda": "https://www.incentivi.gov.it/it/catalogo/partecipazione-alla-fiera-internazionale-del-libro-buchmesse-francoforte-2023-regione",
  "linkUfficiale": "https://www.regione.lazio.it/notizia/fiera-internazionale-libro-francoforte",
  "ultimoAggiornamento": "2024-03-28"
}
```

### Parametri di input

| Campo              | Tipo    | Default | Descrizione                                                   |
|--------------------|---------|---------|---------------------------------------------------------------|
| `regione`          | string  | —       | Filtra per regione (es. "Lombardia", "Nazionale")             |
| `ambito`           | string  | —       | Filtra per ambito (es. "Innovazione", "Ricerca e sviluppo")   |
| `dimensioneImpresa`| enum    | —       | Microimpresa / Piccola Impresa / Media Impresa / Grande       |
| `formaAgevolazione`| string  | —       | Contributo/Fondo perduto, Finanziamento agevolato, ecc.       |
| `soloAttivi`       | boolean | true    | Esclude bandi con scadenza già passata                        |
| `soloConScadenza`  | boolean | false   | Esclude bandi senza data di scadenza                          |
| `maxResults`       | integer | 1000    | Limite risultati (max 10 000)                                 |

### Campi di output

| Campo                | Tipo          | Descrizione                              |
|----------------------|---------------|------------------------------------------|
| `id`                 | string        | ID nodo Drupal                           |
| `titolo`             | string        | Titolo del bando                         |
| `descrizione`        | string        | Testo descrittivo (max 800 car.)         |
| `regioni`            | string\[]      | Regioni ammissibili                      |
| `ambiti`             | string\[]      | Ambiti tematici                          |
| `dimensioniImpresa`  | string\[]      | Dimensioni impresa ammesse               |
| `formeAgevolazione`  | string\[]      | Tipo di agevolazione                     |
| `speseSostenibili`   | string\[]      | Voci di spesa ammissibili                |
| `tipoSoggetto`       | string\[]      | Tipologie di soggetto beneficiario       |
| `soggettoErogatore`  | string        | Ente che eroga l'agevolazione            |
| `dataApertura`       | date (YYYY-MM-DD) | Data apertura sportello              |
| `dataScadenza`       | date (YYYY-MM-DD) | Data scadenza domanda                |
| `statoScadenza`      | string        | Attivo / Scaduto / Senza scadenza        |
| `budgetEuro`         | number        | Budget totale stanziato (€)              |
| `contributoMinEuro`  | number        | Contributo minimo per impresa (€)        |
| `contributoMaxEuro`  | number        | Contributo massimo per impresa (€)       |
| `codiciAteco`        | string        | Settori ATECO ammissibili                |
| `normativaRiferimento` | string      | Normativa o decreto di riferimento       |
| `linkScheda`         | url           | Scheda bando su incentivi.gov.it         |
| `linkUfficiale`      | url           | Link al sito ufficiale del bando         |
| `ultimoAggiornamento`| date          | Data ultimo aggiornamento record         |

### Note tecniche

- Paginazione via parametro Solr `start`/`rows` (100 record per pagina)
- \~5 700 record totali → nessuno streaming necessario, footprint memoria minimo
- Nessuna autenticazione richiesta; endpoint Solr pubblico
- Nessun dato personale (PII): tutti i campi sono informativi/istituzionali
- `soloAttivi=true` usa il filtro Solr `zs_field_close_date:[NOW TO *]`

### Use case

- **Alert per consulenti**: monitora nuovi bandi per un cliente per regione/settore
- **Lead generation**: identifica PMI che potrebbero beneficiare di incentivi attivi
- **BI / dashboard**: alimenta un database aggiornato di bandi per analisi temporali
- **Comparazione fonti**: integra con TED (EU) e Gazzetta Ufficiale per coverage completo

# Actor input Schema

## `regione` (type: `string`):

Filtra per regione italiana (es. 'Lombardia', 'Campania'). Lascia vuoto per tutte le regioni. Usa 'Nazionale' per incentivi nazionali.

## `ambito` (type: `string`):

Filtra per ambito tematico (es. 'Innovazione', 'Internazionalizzazione', 'Ricerca e sviluppo'). Lascia vuoto per tutti.

## `dimensioneImpresa` (type: `string`):

Filtra per dimensione: 'Microimpresa', 'Piccola Impresa', 'Media Impresa', 'Grande Impresa'.

## `formaAgevolazione` (type: `string`):

Filtra per tipo: 'Contributo/Fondo perduto', 'Finanziamento agevolato', 'Credito di imposta', 'Garanzia', ecc.

## `soloAttivi` (type: `boolean`):

Se true, esclude gli incentivi con data scadenza già passata.

## `soloConScadenza` (type: `boolean`):

Se true, esclude i bandi senza data di scadenza nota.

## `maxResults` (type: `integer`):

Limite sul numero di record estratti (default 1000, max 10000).

## Actor input object example

```json
{
  "dimensioneImpresa": "",
  "soloAttivi": true,
  "soloConScadenza": false,
  "maxResults": 1000
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("promptica/incentivi-pmi-italia").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("promptica/incentivi-pmi-italia").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{}' |
apify call promptica/incentivi-pmi-italia --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=promptica/incentivi-pmi-italia",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Incentivi PMI Italia — Bandi e agevolazioni (incentivi.gov.it)",
        "description": "Estrae bandi, agevolazioni e incentivi per PMI dal portale ufficiale incentivi.gov.it (MIMIT). Filtrabile per regione, settore/ambito, dimensione impresa, forma di agevolazione e scadenza. Zero PII, solo dati pubblici.",
        "version": "0.1",
        "x-build-id": "tHw2cnXeqnAwMga8H"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/promptica~incentivi-pmi-italia/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-promptica-incentivi-pmi-italia",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/promptica~incentivi-pmi-italia/runs": {
            "post": {
                "operationId": "runs-sync-promptica-incentivi-pmi-italia",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/promptica~incentivi-pmi-italia/run-sync": {
            "post": {
                "operationId": "run-sync-promptica-incentivi-pmi-italia",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "regione": {
                        "title": "Regione",
                        "type": "string",
                        "description": "Filtra per regione italiana (es. 'Lombardia', 'Campania'). Lascia vuoto per tutte le regioni. Usa 'Nazionale' per incentivi nazionali."
                    },
                    "ambito": {
                        "title": "Ambito / Settore",
                        "type": "string",
                        "description": "Filtra per ambito tematico (es. 'Innovazione', 'Internazionalizzazione', 'Ricerca e sviluppo'). Lascia vuoto per tutti."
                    },
                    "dimensioneImpresa": {
                        "title": "Dimensione impresa",
                        "enum": [
                            "",
                            "Microimpresa",
                            "Piccola Impresa",
                            "Media Impresa",
                            "Grande Impresa"
                        ],
                        "type": "string",
                        "description": "Filtra per dimensione: 'Microimpresa', 'Piccola Impresa', 'Media Impresa', 'Grande Impresa'.",
                        "default": ""
                    },
                    "formaAgevolazione": {
                        "title": "Forma di agevolazione",
                        "type": "string",
                        "description": "Filtra per tipo: 'Contributo/Fondo perduto', 'Finanziamento agevolato', 'Credito di imposta', 'Garanzia', ecc."
                    },
                    "soloAttivi": {
                        "title": "Solo incentivi attivi (non scaduti)",
                        "type": "boolean",
                        "description": "Se true, esclude gli incentivi con data scadenza già passata.",
                        "default": true
                    },
                    "soloConScadenza": {
                        "title": "Solo incentivi con data scadenza",
                        "type": "boolean",
                        "description": "Se true, esclude i bandi senza data di scadenza nota.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Numero massimo di risultati",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Limite sul numero di record estratti (default 1000, max 10000).",
                        "default": 1000
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
