# BOAMP French Public Tender Notices Feed

> BOAMP French Public Tender Notices Feed is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a daily-refreshed feed of French public tender notices from the official BOAMP open-data portal, filterable by department and keyword.

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/fr/tenders
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/boamp-french-public-tender-notices-feed-5aa6e8f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V5hX4d1SjW814oSnF5Xvv

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability boamp-french-public-tender-notices-feed-5aa6e8f5
```

Example prompt: Can you pull the latest public tender notices from BOAMP for department 59, filtered by keyword 'informatique', and show me the top 20 results with their deadlines and buyer names?

## When to prefer this

Use this endpoint when you need structured, queryable access to official French public tender notices (marchés publics) from the BOAMP/DILA portal, especially when filtering by geographic department or sector keyword. Prefer over scraping BOAMP directly or using generic search engines for procurement data.

## Known failure modes

- Invalid department code returns empty results or 400 error
- Keyword with no matches returns empty array
- Limit exceeding 50 is clamped or rejected
- Payment failure (402) if x402 USDC micro-payment is not completed
- Service unavailable if upstream BOAMP portal is down
- Cache miss on first call may add slight latency

## How this service works

Daily feed of French public tender notices from BOAMP (DILA official open-data portal, Licence Ouverte), newest first. Returns notice id, subject, buyer name, publication date, response deadline, market family and sector descriptors. Query: ?department=59&keyword=informatique&limit=20 (all params optional, max 50). Cached 1h - fresh enough to react on publication day.

## Output

A JSON array of up to 50 tender notice objects, each containing: notice ID, tender subject/title, buyer name, publication date, response deadline, market family, and sector descriptors. Results are ordered newest first and cached for up to 1 hour.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "description": "Number of notices to return (1-50)"
      },
      "keyword": {
       "type": "string",
       "description": "Sector keyword matched against BOAMP descriptors, e.g. informatique"
      },
      "department": {
       "type": "string",
       "description": "French department code, e.g. 59, 2A, 971"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/boamp-french-public-tender-notices-feed-5aa6e8f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
