Raffaella Gozzini
06/15/2026, 9:50 AMkapa.ai
06/15/2026, 9:50 AM@gooddata/catalog-export tool ā but this is code generation for development purposes, not a CSV data export. [Export Catalog]
If you are looking to export the data behind a filtered visualization or report to CSV, the recommended approach is:
1. Use the API to run an AFM execution with your desired filters.
2. Then call the tabular export endpoint to download the result as CSV.
# Step 1: Create the export
curl $HOST_URL/api/v1/actions/workspaces/<workspace_id>/export/tabular \
-H 'Authorization: Bearer $API_TOKEN' \
-H 'Content-Type: application/json' \
-X POST \
-d '{
"format": "CSV",
"fileName": "my_export",
"executionResult": "<execution_result_id>"
}'
# Step 2: Download the export
curl $HOST_URL/api/v1/actions/workspaces/<workspace_id>/export/tabular/<export_result_id> \
-H 'Authorization: Bearer $API_TOKEN' \
-X GET
[Tabular Export API]
Could you clarify what you mean by "filtered Catalog view"? If you mean the list of catalog items (metrics, attributes, etc.) visible in the workspace UI, that specific export to CSV is not covered in the available knowledge sources, and I'd recommend reaching out to GoodData support for confirmation. š 0 button š 0 button ā¹ļø Tip: Mention @kapa.ai in the thread for follow-ups.
š Our Support team monitors all messages and will jump in if needed.Raffaella Gozzini
06/15/2026, 9:52 AMShamil Akhmadyshev
06/15/2026, 11:57 AMRaffaella Gozzini
06/15/2026, 12:07 PMShamil Akhmadyshev
06/15/2026, 12:47 PMGET /api/v1/entities/workspaces/{workspaceId}/metrics
Documentation on how to Create and manage metrics via API
⢠Attributes ā GET /api/v1/entities/workspaces/{workspaceId}/attributes
⢠Visualizations ā GET /api/v1/entities/workspaces/{workspaceId}/visualizationObjects
⢠Dashboards ā GET /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards
For attributes, visualizations and dashboards the endpoints are documented in the API reference ā search for the entity name on that page. All endpoints support a filter RSQL parameter (e.g. ?filter=title=like=*revenue*) and pagination via page / size.
Here is the list of all API references
Hope that helps!Mauricio Cabezas
06/22/2026, 11:55 AM