← All breaking-change reports

Cloudflare API breaking change: path-removed on /accounts/{account_id}/intel/ip-list

cloudflare · breaking · 2026-03-31 · source: OpenAPI spec diff

What changed

According to the OpenAPI spec diff (cloudflare/cloudflare-oas-b61f904f10c9-to-7abe88500e55-removals), the following surface changed:

path-removed: /accounts/{account_id}/intel/ip-list

cloudflare OAS corridor pair b61f904f10c9 -> 7abe88500e55 (removals subset ingested 2026-08-01)

Who is affected

Mechanical path rewrite at every call site: replace the removed '/intel/ip-list' segment with '/intel/ip-lists' in raw URL builders, route constants, and API client wrappers.

To find out whether your repo is hit — file and line number, no code leaving your machine:

npx mendapi scan --repo .

How to fix it

Migration path:

Mechanical path rewrite at every call site: replace the removed '/intel/ip-list' segment with '/intel/ip-lists' in raw URL builders, route constants, and API client wrappers. The resource semantics are unchanged (same intel IP list catalog read), so no request or response handling edits are required beyond the one-segment rename.

Before:

const lists = await cf.get(`/accounts/${acct}/intel/ip-list`);

After:

const lists = await cf.get(`/accounts/${acct}/intel/ip-lists`);

Replacement data source: the same resource is served at /accounts/{account_id}/intel/ip-lists in the NEW spec

With your own LLM key configured (BYO compute — mendapi never proxies your credentials), npx mendapi llmfix turns this guide into a reviewable draft patch for your repo.

Detected and tracked by mendapi — Dependabot for every API you depend on. Scans run locally; your code never leaves your machine.

Related

Change data is recorded from upstream provider releases, changelogs and OpenAPI spec diffs; every article names its source.