How is it possible to export data using Json?

Hi @nataocampo, yes that’s possible :slightly_smiling_face: you can have a look at the documentation seen at https://{kf_url}/api/v2/assets and if you’re wanting the data from a particular project in JSON format, you can see that at https://{kf_url}/api/v2/assets/{asset_uid}/data.json.

You can store this data locally (for example in data.json) by doing the following:

curl -X GET https://KF_URL/api/v2/assets/ASSET_UID/data.json \
-H "Authorization: Token TOKEN" > data.json

Where KF_URL, ASSET_UID and TOKEN are replaced with your values.

1 Like