DATA COMPATIBILITY SURFACE
Take a bounded snapshot without losing the source boundary.
The existing synchronous export is documented for compatibility. It is not a streaming or bulk-delivery product.
What this is for
Use the export when you need a bounded compatibility snapshot. Use REST for filtered or paginated work and remote MCP for an assistant-led search.
The export returns up to 10,000 current published opportunities and has no pagination. A response at the cap does not prove that a larger dataset was fully transferred.
Request examples
curl --silent --show-error 'https://openmedici.com/api/v1/exports/latest' \
--header 'Accept: application/json'{
"license": "CC BY 4.0",
"generatedAt": "2026-…",
"data": [{ "slug": "…", "officialUrl": "https://…", "sourceCheckedAt": "2026-…" }]
}curl --silent --show-error 'https://openmedici.com/api/v1/exports/latest?format=csv' \
--header 'Accept: text/csv'slug,name,organization,type,fields,eligible_countries,funding_min_usd,funding_max_usd,next_deadline,official_url
"…","…","…","…","topic-a|topic-b","US|CA","…","…","…","https://…"JSON and CSV are not identical
| Behavior | JSON | CSV |
|---|---|---|
| Top-level license | license included | Not embedded |
| Generated time | generatedAt included | Not embedded as a column |
| Array values | JSON arrays | Pipe-joined with | |
| Download behavior | JSON response | Filename and five-minute public cache headers |
| Retrieved-at value | Not added per row | Not embedded as a column |
Spreadsheet safety
Important: CSV cells are quoted, but values are not yet neutralized against spreadsheet formulas. Treat the file as untrusted data. Import it as text or sanitize cells beginning with =, +, -, or @ before opening it in software that evaluates formulas.
Provenance and attribution
Records expose provider links through officialUrl and may expose the neutral source-check time through sourceCheckedAt. A missing field remains unknown; the export does not infer eligibility, funding, or freshness.
Attribution: Open Medici, an independent project by Alerio, licensed CC BY 4.0, with attribution to the original sources.
License text: Creative Commons Attribution 4.0 International. Preserve attribution to the original source providers when reusing their facts.
Limitations
- The export is synchronous, capped at 10,000 rows, and has no pagination.
- It is not a historical archive, change feed, streaming endpoint, or completeness guarantee.
- The route does not currently advertise cross-origin browser access; request it server-side or from the same origin.
- Use the public OpenAPI document for the machine schema and the methodology for publication boundaries.