ToolAssay

Convert comma/tab-delimited quoted CSV to JSON string rows or JSON string rows t

Convert comma/tab-delimited quoted CSV to JSON string rows or JSON string rows to CSV. Preserves string values, duplicate headers and ragged rows; no type inference. CSV output escapes spreadsheet formula starters by default and reports alterations. Maximum 500 rows and 50 columns.

Answeringour last check, 2026-09-26
1 of 1checks answered this week
1048 msmedian answer time
$0.01listed price per call
$0.01price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://www.tradepilotusa.com/api/agent-commerce/v1/services/csv_table_convert/execute

CategoryCode and developer
Provider hostwww.tradepilotusa.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-26 valid payment request 402$0.01 1048 ms

Example input (from the provider)

{
  "body": {
    "direction": "csv_to_json",
    "source": "name,note\r\nAda,\"Hello, world\""
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "properties": {
            "delimiter": {
              "enum": [
                ",",
                "\t"
              ]
            },
            "direction": {
              "enum": [
                "csv_to_json",
                "json_to_csv"
              ]
            },
            "source": {
              "maxLength": 48000,
              "type": "string"
            },
            "spreadsheet_safe": {
              "type": "boolean"
            }
          },
          "required": [
            "direction",
            "source"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "additionalProperties": false,
          "properties": {
            "provenance": {
              "additionalProperties": false,
              "properties": {
                "execution": {
                  "const": "deterministic_local"
                },
                "model_used": {
                  "const": false
                },
                "network_request_performed": {
                  "const": false
                }
              },
              "required": [
                "execution",
                "model_used",
                "network_request_performed"
              ],
              "type": "object"
            },
            "request_id": {
              "maxLength": 100,
              "type": "string"
            },
            "result": {
              "additionalProperties": false,
              "properties": {
                "csv": {
                  "maxLength": 300000,
                  "type": "string"
                },
                "formula_cells_escaped": {
                  "minimum": 0,
                  "type": "integer"
                },
                "json": {
                  "maxLength": 300000,
                  "type": "string"
                },
                "row_count": {
                  "minimum": 0,
                  "type": "integer"
                },
                "rows": {
                  "items": {
                    "items": {
                      "maxLength": 8000,
                      "type": "string"
                    },
                    "maxItems": 50,
                    "minItems": 1,
                    "type": "array"
                  },
                  "maxItems": 500,
                  "type": "array"
                }
              },
              "required": [
                "row_count",
                "formula_cells_escaped"
              ],
              "type": "object"
            },
            "utility": {
              "const": "csv_table_convert"
            }
          },
          "required": [
            "request_id",
            "utility",
            "result",
            "provenance"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON