datafloe Get a key

A record, in full

US food prices, monthly (BLS Average Price)

Schema, a real sample, a live query box, snippets, and the machine-readable license.

GET /v1/datafloe/us-food-prices

US food prices, monthly (BLS Average Price)

source https://www.bls.gov/cpi/factsheets/average-prices.htm  ·  license U.S. Government public domain  ·  retrieved 2026-06-01
redistribution unrestricted, commercial use permitted, no attribution required
rows149,182
columns9
version2026-06-01
sourcelicensed
License PD public domain CLEARED FOR REUSE · REC 2026-06

Schema

columntypenull %
id integer 0.0
series_id text 0.0
area_code text 0.0
area_name text 0.0
item_code text 0.0
item_name text 0.0
year integer 0.0
month integer 0.0
price_usd real 0.0

Sample · 5 rows

idseries_idarea_codearea_nameitem_codeitem_nameyearmonthprice_usd
149146APU0400FN11020400WestFN1102All soft drinks, 12 pk, 12 oz., cans, per 12 oz. (354.9 ml)202660.622
148773APU0400FJ11010400WestFJ1101Milk, fresh, low-fat, reduced fat, skim, per gal. (3.8 lit)202663.785
148675APU0400FF11010400WestFF1101Chicken breast, boneless, per lb. (453.6 gm)202664.605
148432APU0400FD41010400WestFD4101All Other Pork (Excluding Canned Ham and Luncheon Slices), per lb. (453.6 gm)202664.135
148098APU0400FD31010400WestFD3101All Pork Chops, per lb. (453.6 gm)202664.178

Use it

# every response carries x-license
curl "https://api.datafloe.dev/v1/datafloe/us-food-prices" \
  -H "Authorization: Bearer datafloe_live_…"
const r = await fetch(
  "https://api.datafloe.dev/v1/datafloe/us-food-prices",
  { headers: { Authorization: "Bearer datafloe_live_…" } }
);
const { data, meta } = await r.json();
import httpx
r = httpx.get(
  "https://api.datafloe.dev/v1/datafloe/us-food-prices",
  headers={"Authorization": "Bearer datafloe_live_…"},
)
data = r.json()["data"]

License · machine-readable

{
  "license_id": "us-public-domain@1",
  "spdx_analog": null,
  "rights": {
    "commercial_use": true,
    "redistribution": true,
    "raw_download": true,
    "ai_training": false
  },
  "attribution_required": false,
  "attribution_text": "U.S. Bureau of Labor Statistics, Average Price Data (AP), Consumer Price Index program.",
  "provenance": {
    "uploader": "datafloe",
    "declared_origin": "licensed",
    "source_url": "https://www.bls.gov/cpi/factsheets/average-prices.htm",
    "version": "2026-06-01",
    "content_hash": "sha256:2304686d36414ba905f53fbc914f6cc7abe8e49b6b51878ef82208946ae246fc",
    "published_at": "2026-06-01"
  },
  "price": {
    "model": "free",
    "monthly_usd": 0
  },
  "terms_url": "https://www.usa.gov/government-works"
}

ai_training is false on every dataset by design — you learn we're license-explicit before training rights are ever sold.