Enter a public API URL to fetch data and automatically transform it into a structured CSV dataset.
Follow these steps in order. Each one builds on the previous.
Install required modules via pip
Find a public API key for this project
Fetch the data from the API using requests
Validate the response you just fetched from the API
Normalize the nested JSON data by flattening it
Use the fetched data to build a pandas dataframe
Handle missing values or duplicate values
Export the cleaned dataset to CSV format
Generate a summary for the newly created CSV dataset
Test the file with at least two different public APIs
Loading...