# French Public Tenders (BOAMP) — Calls for Tender Search (`vigilant_jasmine/french-public-tenders-boamp`) Actor

Search French public procurement tenders (appels d offres) from official BOAMP open data. Filter by keyword, department, market type and deadline. Buyer, object, deadline and notice URL. Free.

- **URL**: https://apify.com/vigilant\_jasmine/french-public-tenders-boamp.md
- **Developed by:** [DEV DEV](https://apify.com/vigilant_jasmine) (community)
- **Categories:** Business, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.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

## French Public Tenders (BOAMP) — Calls for Tender Search

Search **French public procurement tenders** — the open calls for tender published in the BOAMP (*Bulletin Officiel des Annonces de Marchés Publics*, "appels d'offres", "marchés publics"). Every French public buyer — city halls, hospitals, ministries, agencies — must publish here. This actor turns that firehose into a filtered, structured feed: who is buying, what they need, how much time is left to bid, and a direct link to the notice.

**This actor is free.** You only pay your own Apify platform usage.

> **BOAMP vs DECP** — BOAMP contains tenders **open for bidding**. If you need contracts **already awarded** (with the winner and amount), use the DECP actor instead.

### Input

| Field | Type | Description |
|---|---|---|
| `keywords` | array | Terms matched against the tender object, in French. Multiple = OR. Empty = latest tenders. |
| `departments` | array | Department codes: `75`, `59`, `2A`, `971`… Multiple = OR. |
| `marketTypes` | array | `Travaux` (works), `Fournitures` (supplies), `Services`. |
| `publishedSince` / `publishedUntil` | string | `YYYY-MM-DD` bounds on publication date. |
| `openOnly` | boolean | Keep only tenders whose deadline has not passed. Default `false`. |
| `maxResults` | integer | Cap on results. Default `100`. |
| `sortBy` | string | `dateparution DESC` (newest) or `datelimitereponse ASC` (closing soonest). |

### Output

One dataset item per tender, each with a `status` field (`found` / `not_found` / `error`).

```json
{
  "status": "found",
  "tenderId": "26-70096",
  "title": "Service de transport privé de personnes à mobilité réduite (PMR)",
  "buyer": "Cté Cnes du Grand Pic St Loup",
  "publishedAt": "2026-07-16",
  "deadline": "2026-09-14T11:00:00+00:00",
  "noticeType": "Avis de marché",
  "procedure": "Procédure Ouverte",
  "marketTypes": ["Services"],
  "categories": ["Transport"],
  "departments": ["30", "34"],
  "scope": "Marchés européens",
  "state": "INITIAL",
  "awardCriteria": ["environnementaux"],
  "url": "https://www.boamp.fr/pages/avis/?q=idweb:26-70096"
}
````

### Use cases

- **Bid monitoring** — a daily feed of new tenders matching your trade and region, with deadlines.
- **B2B lead generation** — find public buyers actively purchasing what you sell.
- **Market intelligence** — measure public demand by category, department or period.
- **Competitive analysis** — see which procedures and award criteria are used in your sector.

### Limitations & fair use

- Source: [BOAMP open data](https://boamp-datadila.opendatasoft.com/) published by the DILA under the **Licence Ouverte** (open licence, free to reuse).
- Keyword search runs against the tender **object** field and is French-language.
- The API caps pagination at an offset of **10 000** — narrow your filters (department, date range) to reach deeper result sets.
- The actor retries with backoff and paces requests to stay polite to the source.

### More actors by this developer

Reliable data tools built on official French & EU open data APIs — company data, compliance checks, geo and environment: **[apify.com/vigilant\_jasmine](https://apify.com/vigilant_jasmine)**

# Actor input Schema

## `keywords` (type: `array`):

Search terms matched against the tender object (French text). Multiple keywords are combined with OR. Leave empty to get the latest tenders.

## `departments` (type: `array`):

Filter by French department code, e.g. 75, 59, 2A, 971. Multiple values are combined with OR.

## `marketTypes` (type: `array`):

Filter by market type. Allowed values: Travaux, Fournitures, Services.

## `publishedSince` (type: `string`):

Only tenders published on or after this date.

## `publishedUntil` (type: `string`):

Only tenders published on or before this date.

## `openOnly` (type: `boolean`):

Keep only tenders whose response deadline has not passed yet.

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

Maximum number of tenders to return.

## `sortBy` (type: `string`):

Sort expression, e.g. "dateparution DESC" (newest first) or "datelimitereponse ASC" (closing soonest).

## Actor input object example

```json
{
  "keywords": [
    "voirie"
  ],
  "departments": [],
  "marketTypes": [],
  "openOnly": false,
  "maxResults": 100,
  "sortBy": "dateparution DESC"
}
```

# 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 = {
    "keywords": [
        "voirie"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("vigilant_jasmine/french-public-tenders-boamp").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 = { "keywords": ["voirie"] }

# Run the Actor and wait for it to finish
run = client.actor("vigilant_jasmine/french-public-tenders-boamp").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 '{
  "keywords": [
    "voirie"
  ]
}' |
apify call vigilant_jasmine/french-public-tenders-boamp --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=vigilant_jasmine/french-public-tenders-boamp",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "French Public Tenders (BOAMP) — Calls for Tender Search",
        "description": "Search French public procurement tenders (appels d offres) from official BOAMP open data. Filter by keyword, department, market type and deadline. Buyer, object, deadline and notice URL. Free.",
        "version": "0.0",
        "x-build-id": "6GTIBnlJngu9wJbDO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/vigilant_jasmine~french-public-tenders-boamp/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-vigilant_jasmine-french-public-tenders-boamp",
                "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/vigilant_jasmine~french-public-tenders-boamp/runs": {
            "post": {
                "operationId": "runs-sync-vigilant_jasmine-french-public-tenders-boamp",
                "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/vigilant_jasmine~french-public-tenders-boamp/run-sync": {
            "post": {
                "operationId": "run-sync-vigilant_jasmine-french-public-tenders-boamp",
                "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": {
                    "keywords": {
                        "title": "Keywords",
                        "type": "array",
                        "description": "Search terms matched against the tender object (French text). Multiple keywords are combined with OR. Leave empty to get the latest tenders.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "departments": {
                        "title": "Department codes",
                        "type": "array",
                        "description": "Filter by French department code, e.g. 75, 59, 2A, 971. Multiple values are combined with OR.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "marketTypes": {
                        "title": "Market types",
                        "type": "array",
                        "description": "Filter by market type. Allowed values: Travaux, Fournitures, Services.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "publishedSince": {
                        "title": "Published since (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Only tenders published on or after this date."
                    },
                    "publishedUntil": {
                        "title": "Published until (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Only tenders published on or before this date."
                    },
                    "openOnly": {
                        "title": "Only tenders still open",
                        "type": "boolean",
                        "description": "Keep only tenders whose response deadline has not passed yet.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of tenders to return.",
                        "default": 100
                    },
                    "sortBy": {
                        "title": "Sort order",
                        "enum": [
                            "dateparution DESC",
                            "dateparution ASC",
                            "datelimitereponse ASC",
                            "datelimitereponse DESC"
                        ],
                        "type": "string",
                        "description": "Sort expression, e.g. \"dateparution DESC\" (newest first) or \"datelimitereponse ASC\" (closing soonest).",
                        "default": "dateparution DESC"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
