ContributionsMost RecentMost LikesSolutionsRe: Bulk Data API - new user questions Hi MarkSchwanke Bulk Data API supports data exports in CSV and JSON formats. Once you download data in CSV format, it is easy to import CSV data to any SQL data system. There are many external tools available across different operating systems for the same. Re: How to use queries with Bulk Data API? Hi bob-mccormick. Yes, you are right. These are sample theoretical queries to construct community analytics metrics, to run against the data which is exported using Bulk API and stored in your SQL data store. Re: Which Bulk Data API fields go with each event type? Hi bob-mccormick Considering a huge number of event types it is hard to document all available fields for each event type in one place. Most event types share the same common fields like message details, board details, user details etc. If you raise a support ticket, we would be able to provide simulated sample Bulk API data in CSV format, it may help to understand event types and their fields. Re: Bulk Data API v2 " not found" message error response when community-id or client-id or auth token do not exist on the server-side, please check are you using the right client/auth token. Please try out the Curl call before trying with python script. sample curl call: curl "https://api.lithium.com/lsi-data/v2/data/export/community/<community>.prod?fromDate=20220301&toDate=20220302" -H "client-id: ********=" -u "********:" -k -o lithosphere_prod Re: Bull API return cvs instead of json ldelagoutte There is no cache mechanism in Bulk API to remember the previous calls, each call is treated as independent. We just tried both CSV and JSON it works as expected, not seeing any issue. here is the CURL we used for testing JSON export for curl --location --request GET 'https://eu.api.lithium.com/lsi-data/v1/data/export/community/schneider.prod?fromDate=20200923&toDate=20200926' \ --header 'client-id: **********' \ --header 'Authorization: Basic *********' \ --header 'Accept: application/json' -k -o schneider_20210913