Exporting CMS data (archived vs published)

Hey,

Currently, we have archived posts and published posts. When we export the data from a collection, it exports everything. Unfortunately, there isn’t a field where it says “archived or published”

is there a way to only export the published listings?

If you use the Webflow API, each item in the JSON output will have an _archived boolean field. You could then filter the JSON output on that field.

curl https://api.webflow.com/collections/YOURCOLLECTIONID/items \
    -H "Authorization: Bearer SECRETTOKENGOESHERE" \
    -H 'accept-version: 1.0.0'