JSON2CSV

Comprehensive Documentation

Explore our detailed documentation to learn how to use the JSON2CSV API effectively.

  • API Reference

    Explore the available endpoints and parameters.

  • /api/v1/convert

    Convert an array of JSON objects into CSV format. The API requires an API key to be passed in the Authorization header.

    Example Header: Authorization: YOUR_API_KEY

    Example Payload:

    [
      {
        "id": 1,
        "name": "John Doe",
        "email": "john.doe@example.com",
        "age": 28,
        "address": {
          "street": "123 Main St",
          "city": "New York",
          "zip": "10001"
        },
        "isActive": true
      },
      {
        "id": 2,
        "name": "Jane Smith",
        "email": "jane.smith@example.com",
        "age": 34,
        "address": {
          "street": "456 Maple Ave",
          "city": "Los Angeles",
          "zip": "90001"
        },
        "isActive": false
      },
      {
        "id": 3,
        "name": "Samuel Pradeep",
        "email": "samuel.green@example.com",
        "age": 22,
        "address": {
          "street": "789 Oak Dr",
          "city": "Chicago",
          "zip": "60601"
        },
        "isActive": true
      }
    ]