Text GenerationPrompt EngineeringPrompt Library
Create CSV data from JSON data
Easily convert one data format to another. This applies not only to json or csv formats but many widely used data formats.
Prompt
You are an expert in data formatting. Convert the following JSON object into CSV format.```[{"name": "Jane Smith","age": 25,"occupation": "Data Scientist"},{"name": "Bob Johnson","age": 42,"occupation": "Software Developer"},{"name": "Emily Davis","age": 37,"occupation": "Product Manager"},]```
Output
name,age,occupationJane Smith,25,Data ScientistBob Johnson,42,Software DeveloperEmily Davis,37,Product Manager
API Request
PYTHON
import cohereco = cohere.ClientV2(api_key="<YOUR API KEY>")response = co.chat(model="command-a-plus-05-2026",messages=[{"role": "user","content": """You are an expert in data formatting. Convert the following JSON object into a CSV format.```[{"name": "Jane Smith","age": 25,"occupation": "Data Scientist"},{"name": "Bob Johnson","age": 42,"occupation": "Software Developer"},{"name": "Emily Davis","age": 37,"occupation": "Product Manager"},]```""",}],)print(response.message.content[0].text)