Skip to main content

Web Content via API / SDK

The framework_to_insight tool lets you programmatically query any Web Content dataset. This page provides example payloads across different verticals and a full parameter reference.

For the complete Python SDK walkthrough (Build → Price → Buy → Get workflow, authentication, error handling, and pagination), see the Web Content APIs technical guide.


Example Payloads

Consumer & Retail

Chipotle — Average Menu Item Prices (monthly)

{
"entities": [{ "carc_id": 64231, "representation": "company" }],
"insight": { "insight_id": 110864 },
"filters": {
"location_resolution": "ww",
"date_resolution": "month",
"date_range": { "start_date": "2025-04-01", "end_date": "2026-04-01" },
"category": "*",
"type": "*"
},
"aggregate": "mean"
}

Carvana — Weekly Incentivized Vehicle Prices

{
"entities": [{ "carc_id": 64256, "representation": "company" }],
"insight": { "insight_id": 110847 },
"filters": {
"location_resolution": "ww",
"date_resolution": "week",
"date_range": { "start_date": "2025-10-01", "end_date": "2026-04-01" },
"make": "*",
"fuelType": "*",
"bodyType": "*"
},
"aggregate": "mean"
}

Tesla — Weekly Total Inventory Price

{
"entities": [{ "carc_id": 64465, "representation": "company" }],
"insight": { "insight_id": 111042 },
"filters": {
"location_resolution": "ww",
"date_resolution": "week",
"date_range": { "start_date": "2026-01-01", "end_date": "2026-04-01" }
},
"aggregate": "sum"
}

Travel & Hospitality

Booking Holdings — Weekly Car Rental Prices

{
"entities": [{ "carc_id": 64174, "representation": "company" }],
"insight": { "insight_id": 110946 },
"filters": {
"location_resolution": "ww",
"date_resolution": "week",
"date_range": { "start_date": "2025-01-01", "end_date": "2026-04-01" },
"carType": "*",
"agency": "*"
},
"aggregate": "mean"
}

Avis Budget Group — Daily Pay Now Rental Amounts

{
"entities": [{ "carc_id": 64200, "representation": "company" }],
"insight": { "insight_id": 110822 },
"filters": {
"location_resolution": "ww",
"date_resolution": "day",
"date_range": { "start_date": "2025-01-01", "end_date": "2026-04-01" },
"carGroup": "*",
"make": "*"
},
"aggregate": "sum"
}

Real Estate & Storage

Life Storage — Weekly Available Units

{
"entities": [{ "carc_id": 32655, "representation": "company" }],
"insight": { "insight_id": 110952 },
"filters": {
"location_resolution": "ww",
"date_resolution": "week",
"date_range": { "start_date": "2024-01-01", "end_date": "2024-09-01" },
"size": "*"
},
"aggregate": "sum"
}

Extra Space Storage — Monthly Review Count

{
"entities": [{ "carc_id": 64299, "representation": "company" }],
"insight": { "insight_id": 110897 },
"filters": {
"location_resolution": "ww",
"date_resolution": "month",
"date_range": { "start_date": "2024-01-01", "end_date": "2025-01-01" }
},
"aggregate": "sum"
}

Tech & SaaS — Job Postings

Intuit — Daily Job Posting Count

{
"entities": [{ "carc_id": 64334, "representation": "company" }],
"insight": { "insight_id": 110937 },
"filters": {
"location_resolution": "ww",
"date_resolution": "day",
"date_range": { "start_date": "2025-01-01", "end_date": "2026-04-01" }
},
"aggregate": "count_distinct"
}

Toast — Weekly Job Posting Count

{
"entities": [{ "carc_id": 64468, "representation": "company" }],
"insight": { "insight_id": 111044 },
"filters": {
"location_resolution": "ww",
"date_resolution": "week",
"date_range": { "start_date": "2024-01-01", "end_date": "2026-04-01" }
},
"aggregate": "count_distinct"
}

Cloud & Infrastructure

Sunbelt Rentals — Daily Equipment Inventory Count

{
"entities": [{ "carc_id": 64456, "representation": "company" }],
"insight": { "insight_id": 111035 },
"filters": {
"location_resolution": "ww",
"date_resolution": "day",
"date_range": { "start_date": "2024-04-01", "end_date": "2024-12-01" }
},
"aggregate": "sum"
}

Events & Entertainment

Eventbrite — Daily Total Events

{
"entities": [{ "carc_id": 64297, "representation": "company" }],
"insight": { "insight_id": 110896 },
"filters": {
"location_resolution": "ww",
"date_resolution": "day",
"date_range": { "start_date": "2024-01-01", "end_date": "2024-07-01" }
},
"aggregate": "sum"
}

Live Nation — Monthly Ticket Count

{
"entities": [{ "carc_id": 64356, "representation": "company" }],
"insight": { "insight_id": 110956 },
"filters": {
"location_resolution": "ww",
"date_resolution": "month",
"date_range": { "start_date": "2024-05-01", "end_date": "2025-06-01" }
},
"aggregate": "sum"
}

Key Parameters

ParameterDescriptionExample Values
entities[].carc_idCarbon Arc entity ID64231 (Chipotle), 64256 (Carvana)
entities[].representationEntity typecompany, product, ticker
insight.insight_idMetric to pull110864 (Item Price), 110847 (Incentivized Price)
filters.date_resolutionTime granularityday, week, month, quarter
filters.location_resolutionGeo granularityww (worldwide), us, state, country
aggregateAggregation methodsum, mean, count_distinct
filters.date_rangeTime window{ "start_date": "...", "end_date": "..." }

Wildcard filters ("*") return all values for that dimension. Omit a filter to use the default.


Next Steps