Using your URL
Let the automation begin...
Congratulations on generating your first CSV Getter URL!

CSV Getter Generated URL
Simply pasting this URL into your browser will prompt a full CSV Download. Want to schedule a full CSV Backup? Watch this video on how easy this is to do with Make.com:
CSV Getter URLs are very adaptable and agile. They are helpful for modular, no-code programming. Take the following:
https://api.csvgetter.com/files/8718e00cc1?type=csv
This URL returns CSV Data, thanks to the
type=csv
parameter. Simply changing the type to type=json_records
will return json data.https://api.csvgetter.com/files/8718e00cc1?type=json_records
These parameters are easy to play around with thanks to CSV Getter's Wizard interface:

The box in the top right allows you to apply different
type
parameters to your URL and sample the output. The following type
parameters are currently available:Value | Description |
---|---|
csv | Exports data in CSV format 🎉 |
json_records | list like [{column -> value}, … , {column -> value}] 🎉 |
json_split | dict like {‘index’ -> [index], ‘columns’ -> [columns], ‘data’ -> [values]} |
json_index | dict like {index -> {column -> value}} |
json_columns | dict like {column -> {index -> value}} |
json_table | dict like {‘schema’: {schema}, ‘data’: {data}} |
plot | Shows a plot image of your latest data. 🎉 <img> html elements (add a timestamp parameter to avoid caching) |
dynamic_plot | Hosts a webpage which shows an interactive plot of your data. 🎉 <iframe> html elements (add a timestamp parameter to avoid caching) |
dynamic_table | Hosts a webpage which shows an interactive table with your data. 🎉 <iframe> html elements (add a timestamp parameter to avoid caching) |
Use the wizard to try out all these parameters and view the results with ease. Or see for yourself in the demo video.
Next up - we will look at how other parameters can be made useful to ensure your data comes out with the correct detail and order.
Last modified 4mo ago