Census MARTS
Returns Census Bureau Monthly Advance Retail Trade Survey (MARTS) data, providing an official retail-sales baseline for consumer-signal interpretation. Use this alongside trend data to ground search-signal analysis in hard government statistics.
Endpoint
Authentication
Requires a valid JWT passed via the Authorization header.
Query Parameters
ISO 3166-1 alpha-2 country code. Currently supports US.
Response
Array of monthly MARTS observations. Month identifier (e.g. 2026-03).
Total retail sales in millions USD.
Year-over-year percentage change.
Month-over-month percentage change.
Breakdown by retail category (key-value pairs of category name to sales figure).
ISO 8601 timestamp of the most recent data refresh.
Code Examples
curl -X GET "https://api.consumersignals.io/api/census-marts?geography=US" \
-H "Authorization: Bearer <token>"
Example Response
{
"geography" : "US" ,
"series" : [
{
"month" : "2026-03" ,
"totalRetailSales" : 623400 ,
"yoyChange" : 3.2 ,
"momChange" : 0.8 ,
"categories" : {
"motor_vehicles" : 112500 ,
"food_beverage" : 78200 ,
"general_merchandise" : 62100 ,
"nonstore_retailers" : 98700
}
},
{
"month" : "2026-02" ,
"totalRetailSales" : 618500 ,
"yoyChange" : 2.9 ,
"momChange" : -0.4 ,
"categories" : {
"motor_vehicles" : 111200 ,
"food_beverage" : 77800 ,
"general_merchandise" : 61500 ,
"nonstore_retailers" : 97300
}
}
],
"lastUpdated" : "2026-03-28T12:00:00Z"
}