From fa7c7d3531e1f4ebb12f3e000ff4a4d359be24d0 Mon Sep 17 00:00:00 2001 From: chaksaray Date: Fri, 31 Jul 2026 07:17:20 +0700 Subject: [PATCH] fix: README Pattern 1 example still pointed at the old piranha.bawbel.io endpoint Same class of stale vendor-specific reference already fixed in crosswalks.html and the implementer guide; this instance in README.md was missed at the time. Corrected to the live api.aveproject.org reference API, and fixed the path (/ave/ -> /records/) to match its actual route structure, not just the domain. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 94e0ec2..8dfb6f0 100644 --- a/README.md +++ b/README.md @@ -276,7 +276,7 @@ Three patterns depending on your environment: **Pattern 1 — Runtime API** (cloud CI/CD, always-on internet) ```python import httpx -resp = httpx.get("https://api.piranha.bawbel.io/ave/AVE-2026-00002") +resp = httpx.get("https://api.aveproject.org/records/AVE-2026-00002") record = resp.json() # full record: fingerprint, IOCs, remediation, frameworks ```