# BDPM Medication Generic Group Lookup

> BDPM Medication Generic Group Lookup is a paid API for AI agents from api.invoket.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Given a French CIS code, exact medication name, or DCI substance, returns the official BDPM generic group with the princeps brand and all equivalent generics, including roles, names, pack-level public prices, and reimbursement rates.

## Facts

- Endpoint: GET https://api.invoket.com/medication/generics
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bdpm-medication-generic-group-lookup-e53c96fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0e--j1H5UCqyMguRuG0tg

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 bdpm-medication-generic-group-lookup-e53c96fc
```

Example prompt: What are all the BDPM generic equivalents for the medication with CIS code 60001671, including the princeps brand, each generic's official name, public price, and reimbursement rate?

## When to prefer this

Use this endpoint when you need to identify French BDPM generic substitution options for a medication before substituting or sourcing it, especially when you have a CIS code, exact French medication name, or DCI substance. Prefer this over a general medication lookup when the specific need is generic group membership, pricing, and reimbursement rates within the French regulatory framework.

## Known failure modes

- CIS code not found in BDPM — returns not-found note
- US NDC or non-French drug identifier — returns FR-only scope coverage note
- Medication exists but has no generic group in BDPM — empty generics list
- Ambiguous name matching multiple drugs — may return closest match or disambiguation note
- BDPM does not publish price/reimbursement for some packs — those fields absent

## How this service works

Find the French BDPM generic group of a medication before your agent substitutes or sources it: given a CIS code, exact name or DCI substance, returns the group's principle brand (princeps) and every equivalent generic, each with its role (princeps/generique), official name and pack-level public price and reimbursement rate when the BDPM publishes them. French (BDPM) scope: a US NDC key returns an honest FR-only coverage note. No account, no key, pay per call.

## Output

Returns the BDPM generic group for the queried medication: the principal brand (princeps) and every registered generic equivalent, each labeled with its role (princeps or generique), official BDPM name, pack-level public price, and reimbursement rate where available. If the input is a US NDC code or outside French scope, returns an honest FR-only coverage note.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "cis"
 ],
 "properties": {
  "cis": {
   "type": "string",
   "description": "8-digit French CIS code. Provide exactly ONE key among: cis, name (exact medication name, French BDPM scope - no country here), dci (substance INN/DCI name), ndc (US product NDC - returns an honest FR-only coverage note). Zero or several keys = 400; malformed key = 400; well-formed but not genericized = 200 with found:false (billed - the absence of a group is the answer)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bdpm-medication-generic-group-lookup-e53c96fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.invoket.com](https://www.zero.xyz/host/api.invoket.com/llms.txt)
