Convertisseur JSON en CSV
Convertissez un tableau JSON d'objets au format CSV. Parfait pour exporter des données d'API vers des feuilles de calcul.
Comment utiliser cet outil
- 1
Paste or type a JSON array of objects into the text box. The array must be non-empty (for example: [{"name":"A","value":1}]).
- 2
Click the Convert button to generate the CSV.
- 3
Read the CSV in the output panel below the button, with the header row first followed by one row per object.
- 4
Select the output text and copy it into a spreadsheet, a .csv file, or wherever you need it.
Qu'est-ce que le convertisseur JSON en CSV ?
Le JSON est le format universel des API ; le CSV est le format universel des feuilles de calcul. Convertir de l'un à l'autre est une tâche courante : exporter des analyses vers Excel, importer des données CSV dans des applications JavaScript, etc. Cet outil gère bien les tableaux d'objets plats ; les structures profondément imbriquées peuvent nécessiter un prétraitement.
Cas d'usage courants
Turning a small JSON response from an API into a CSV you can paste straight into Excel or Google Sheets.
Quickly eyeballing tabular API data as rows and columns instead of nested braces.
Preparing a CSV for a bulk-import feature that expects flat columns, when your source data is already a uniform JSON array.
Converting a JSON fixture or seed file into CSV for a quick import into a database GUI.
Generating a CSV snippet for documentation or a bug report without installing jq or writing a script.
Sanity-checking that a JSON array has consistent keys across records by spotting blank or missing cells in the output.
Questions fréquentes
Que se passe-t-il si mon JSON contient des objets imbriqués ?▼
Gère-t-il les caractères spéciaux ?▼
Outils connexes
Convertisseur CSV vers JSON
Convertissez des données CSV en un tableau JSON d'objets. La première ligne est traitée comme l'en-tête.
CSV vers SQL INSERT
Générez des instructions SQL INSERT à partir de données CSV. Utile pour importer des exports CSV dans des bases de données.
Convertisseur binaire vers hexadécimal
Convertissez des nombres binaires en hexadécimal. L'hexadécimal est 4 fois plus compact que le binaire pour une même valeur.
Convertisseur d'hexadécimal en binaire
Convertissez des nombres hexadécimaux en binaire. Chaque chiffre hexadécimal se développe exactement en 4 chiffres binaires.
Convertisseur de décimal en binaire
Convertissez des nombres décimaux en binaire, hexadécimal et octal, toutes les bases à la fois.
Convertisseur ASCII vers hexadécimal
Convertissez du texte en codes hexadécimaux ASCII et inversement. Chaque caractère est converti en sa valeur hexadécimale à 2 chiffres.