API: CSV to JSON
Public

I am going to give you some CSV, you are going to translate it into json

Input:

{ "data": "John,Doe,120 jefferson st.,Riverside, NJ, 08075\nJack,McGinnis,220 hobo Av.,Phila, PA,09119\n\"John \"\"Da Man\"\",Repici,120 Jefferson St.,Riverside, NJ,08075\nStephen,Tyler,\"7452 Terrace \"\"At the Plaza\"\" road\",SomeTown,SD, 91234" }

Output:

[ { "firstName": "John", "lastName": "Doe", "address": "120 jefferson st.", "city": "Riverside", "state": "NJ", "zip": "08075" }, { "firstName": "Jack", "lastName": "McGinnis", "address": "220 hobo Av.", "city": "Phila", "state": "PA", "zip": "09119" }, { "firstName": "John \"Da Man\"", "lastName": "Repici", "address": "120 Jefferson St.", "city": "Riverside", "state": "NJ", "zip": "08075" }, { "firstName": "Stephen", "lastName": "Tyler", "address": "7452 Terrace \"At the Plaza\" road", "city": "SomeTown", "state": "SD", "zip": "91234" } ]
Public API Key 💡

This key is public and may be rate-limited. Please sign up for an account to get your own key.

API Console

Response

cURL Command

Web Console

CSV to JSON