You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are observing a discrepancy in data availability for epiweek: 202514 between the national (nat) level and specific state/sub-regional levels via the fluview API endpoint.
The fluview_meta endpoint correctly reports latest_issue: 202514 and latest_update: "2025-04-11". Consistent with this, national-level data is available for epiweek: 202514. However, when querying for specific states (e.g., tx), data for epiweek: 202514 appears to be missing from the results associated with the same issue: 202514 / release_date: 2025-04-11.
Result: Returns "result": 1, but the "epidata" array only contains data up to "epiweek": 202511. Data for 202512, 202513, and crucially 202514 is missing for region tx. (See full response snippet below)
Result: Returns "result": -2, "message": "no results", epidata: []. (See full response snippet below)
Expected Result:
We expected the state-level queries (like for tx) in steps 2 and 3 to also return data for epiweek: 202514, given that national data exists for this week in the same data release (issue: 202514, release_date: 2025-04-11) and fluview_meta reports 202514 as the latest_issue.
Actual Result:
Data for epiweek: 202514 is missing for state-level regions tested (e.g., tx), leading to either incomplete results or "result": -2 ("no results").
{
"epidata": [
{
"release_date": "2025-03-21", // Note: Older release date for this specific data point"region": "tx",
"issue": 202511,
"epiweek": 202511,
"lag": 0,
// ... other fields ..."ili": 4.39669
}
// *** No entries for epiweek 202512, 202513, 202514 ***
],
"result": 1,
"message": "success"
}
Texas Failure (Step 3 Response):
{
"epidata": [],
"result": -2,
"message": "no results"
}
Question:
Is this discrepancy between national and state-level data availability for epiweek: 202514 known or expected (e.g., due to CDC reporting/ingestion delays for specific states)? Or does it potentially indicate an issue with the data ingestion for this release cycle?
Thank you for maintaining this valuable API.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Endpoint:
fluview
(https://api.delphi.cmu.edu/epidata/fluview/
)Issue Description:
We are observing a discrepancy in data availability for
epiweek: 202514
between the national (nat
) level and specific state/sub-regional levels via thefluview
API endpoint.The
fluview_meta
endpoint correctly reportslatest_issue: 202514
andlatest_update: "2025-04-11"
. Consistent with this, national-level data is available forepiweek: 202514
. However, when querying for specific states (e.g.,tx
), data forepiweek: 202514
appears to be missing from the results associated with the sameissue: 202514
/release_date: 2025-04-11
.Steps to Reproduce:
Query National Data (Success):
https://api.delphi.cmu.edu/epidata/fluview/?regions=nat&epiweeks=202511-202514
"result": 1
and the"epidata"
array contains an object where"epiweek": 202514
. (See full response snippet below)Query State Data - Range (Partial Success, Missing Latest):
https://api.delphi.cmu.edu/epidata/fluview/?regions=tx&epiweeks=202511-202514
"result": 1
, but the"epidata"
array only contains data up to"epiweek": 202511
. Data for202512
,202513
, and crucially202514
is missing for regiontx
. (See full response snippet below)Query State Data - Focused Range (Failure):
https://api.delphi.cmu.edu/epidata/fluview/?regions=tx&epiweeks=202513-202514
"result": -2
,"message": "no results"
,epidata: []
. (See full response snippet below)Expected Result:
We expected the state-level queries (like for
tx
) in steps 2 and 3 to also return data forepiweek: 202514
, given that national data exists for this week in the same data release (issue: 202514
,release_date: 2025-04-11
) andfluview_meta
reports202514
as thelatest_issue
.Actual Result:
Data for
epiweek: 202514
is missing for state-level regions tested (e.g.,tx
), leading to either incomplete results or"result": -2
("no results").Supporting Response Snippets:
Question:
Is this discrepancy between national and state-level data availability for
epiweek: 202514
known or expected (e.g., due to CDC reporting/ingestion delays for specific states)? Or does it potentially indicate an issue with the data ingestion for this release cycle?Thank you for maintaining this valuable API.
The text was updated successfully, but these errors were encountered: