# Mdb Procurement Monitor Enterprise Quickstart Sample Run

**Use case:** 

Zero-friction sample run of the World Bank Procurement Notices + Debarment monitor. Walks up to 50 records per source with delta mode on, so you only get new and status-changed procurement notices or debarment records since the last run. Run once to see the real data shape before a scheduled monitor.

## Input

```json
{
  "sources": [
    "worldBankProcurementNotices",
    "worldBankDebarredFirms"
  ],
  "maxItemsPerSource": 50,
  "onlyNew": true
}
```

## Output

```json
{
  "event_type": {
    "label": "Event Type",
    "format": "string"
  },
  "record_id": {
    "label": "Record ID",
    "format": "string"
  },
  "recipient_or_defendant_name": {
    "label": "Recipient / Defendant Name",
    "format": "string"
  },
  "category_or_type": {
    "label": "Category / Type",
    "format": "string"
  },
  "status_or_estado": {
    "label": "Status",
    "format": "string"
  },
  "publish_date_iso": {
    "label": "Publish Date (ISO)",
    "format": "string"
  },
  "effective_date_iso": {
    "label": "Effective Date (ISO)",
    "format": "string"
  },
  "awarding_or_regulating_agency": {
    "label": "Awarding / Regulating Agency",
    "format": "string"
  },
  "jurisdiction": {
    "label": "Jurisdiction",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [World Bank Procurement & Debarment Monitor](https://apify.com/stefano_seggio/world-bank-procurement-debarment-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/stefano_seggio/world-bank-procurement-debarment-monitor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/stefano_seggio/world-bank-procurement-debarment-monitor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
