JSON Example

Array of Records

List of similarly-shaped records for CSV conversion.

Sample Payload

[
  {"id": 1, "name": "Alice", "active": true},
  {"id": 2, "name": "Bob", "active": false}
]

Notes

  • Ideal input for JSON to CSV conversions.
  • Consistent keys produce clean CSV headers.

More JSON Examples