{
  "info": {
    "name": "Universal Data Format Converter API",
    "description": "Full collection for all format conversions (JSON body + file upload). Set rapidapi_key in collection variables.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "rapidapi_key",
      "value": "YOUR_RAPIDAPI_KEY",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "File upload (multipart)",
      "description": "Send a file; input format is inferred from extension. Add form field \"to\" for output format. Optionally \"options\" (JSON string) and \"download=1\".",
      "item": [
        {
          "name": "File (any) → JSON",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "formdata",
              "formdata": [
                {
                  "key": "file",
                  "type": "file",
                  "src": "",
                  "description": "Select a file (.xlsx, .csv, .json, etc.). Input format is inferred from filename."
                },
                {
                  "key": "to",
                  "value": "json",
                  "type": "text",
                  "description": "Output format"
                }
              ]
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "File (any) → CSV",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "formdata",
              "formdata": [
                {
                  "key": "file",
                  "type": "file",
                  "src": "",
                  "description": "Select a file (.xlsx, .csv, .json, etc.). Input format is inferred from filename."
                },
                {
                  "key": "to",
                  "value": "csv",
                  "type": "text",
                  "description": "Output format"
                }
              ]
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "File (any) → Excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "formdata",
              "formdata": [
                {
                  "key": "file",
                  "type": "file",
                  "src": "",
                  "description": "Select a file (.xlsx, .csv, .json, etc.). Input format is inferred from filename."
                },
                {
                  "key": "to",
                  "value": "excel",
                  "type": "text",
                  "description": "Output format"
                }
              ]
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "File (any) → PDF",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "formdata",
              "formdata": [
                {
                  "key": "file",
                  "type": "file",
                  "src": "",
                  "description": "Select a file (.xlsx, .csv, .json, etc.). Input format is inferred from filename."
                },
                {
                  "key": "to",
                  "value": "pdf",
                  "type": "text",
                  "description": "Output format"
                }
              ]
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "File (any) → XML",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "formdata",
              "formdata": [
                {
                  "key": "file",
                  "type": "file",
                  "src": "",
                  "description": "Select a file (.xlsx, .csv, .json, etc.). Input format is inferred from filename."
                },
                {
                  "key": "to",
                  "value": "xml",
                  "type": "text",
                  "description": "Output format"
                }
              ]
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From json",
      "item": [
        {
          "name": "json → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"json\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"xml\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"csv\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"tsv\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"excel\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"yaml\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"ndjson\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"sql-insert\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ],\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"html-table\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"env\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"query-string\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"base64\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "json → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"json\",\n  \"to\": \"pdf\",\n  \"data\": [\n    {\n      \"name\": \"John\",\n      \"age\": 30\n    },\n    {\n      \"name\": \"Jane\",\n      \"age\": 25\n    }\n  ]\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From xml",
      "item": [
        {
          "name": "xml → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"json\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"xml\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"csv\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"tsv\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"excel\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"yaml\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"ndjson\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"sql-insert\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"html-table\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"env\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"query-string\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"base64\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "xml → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"xml\",\n  \"to\": \"pdf\",\n  \"data\": \"<root><name>John</name><age>30</age></root>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From csv",
      "item": [
        {
          "name": "csv → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"json\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"xml\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"csv\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"tsv\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"excel\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"yaml\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"ndjson\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"sql-insert\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"html-table\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"env\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"query-string\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"base64\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "csv → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"csv\",\n  \"to\": \"pdf\",\n  \"data\": \"name,age\\nJohn,30\\nJane,25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From tsv",
      "item": [
        {
          "name": "tsv → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"json\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"xml\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"csv\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"tsv\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"excel\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"yaml\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"ndjson\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"sql-insert\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"html-table\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"env\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"query-string\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"base64\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "tsv → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"tsv\",\n  \"to\": \"pdf\",\n  \"data\": \"name\\tage\\nJohn\\t30\\nJane\\t25\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From excel",
      "item": [
        {
          "name": "excel → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"json\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"xml\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"csv\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"tsv\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"excel\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"yaml\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"ndjson\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"sql-insert\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"html-table\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"env\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"query-string\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"base64\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "excel → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"excel\",\n  \"to\": \"pdf\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From yaml",
      "item": [
        {
          "name": "yaml → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"json\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"xml\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"csv\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"tsv\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"excel\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"yaml\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"ndjson\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"sql-insert\",\n  \"data\": \"name: John\\nage: 30\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"html-table\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"env\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"query-string\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"base64\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "yaml → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"yaml\",\n  \"to\": \"pdf\",\n  \"data\": \"name: John\\nage: 30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From ndjson",
      "item": [
        {
          "name": "ndjson → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"json\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"xml\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"csv\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"tsv\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"excel\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"yaml\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"ndjson\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"sql-insert\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"html-table\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"env\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"query-string\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"base64\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "ndjson → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"ndjson\",\n  \"to\": \"pdf\",\n  \"data\": \"{\\\"name\\\":\\\"John\\\",\\\"age\\\":30}\\n{\\\"name\\\":\\\"Jane\\\",\\\"age\\\":25}\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From sql-insert",
      "item": [
        {
          "name": "sql-insert → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"json\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"xml\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"csv\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"tsv\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"excel\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"yaml\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"ndjson\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"sql-insert\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"html-table\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"env\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"query-string\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"base64\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "sql-insert → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"sql-insert\",\n  \"to\": \"pdf\",\n  \"data\": \"INSERT INTO users (name, age) VALUES ('John', 30), ('Jane', 25);\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From html-table",
      "item": [
        {
          "name": "html-table → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"json\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"xml\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"csv\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"tsv\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"excel\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"yaml\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"ndjson\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"sql-insert\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"html-table\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"env\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"query-string\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"base64\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "html-table → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"html-table\",\n  \"to\": \"pdf\",\n  \"data\": \"<table><tr><th>name</th><th>age</th></tr><tr><td>John</td><td>30</td></tr></table>\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From env",
      "item": [
        {
          "name": "env → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"json\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"xml\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"csv\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"tsv\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"excel\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"yaml\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"ndjson\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"sql-insert\",\n  \"data\": \"FOO=bar\\nBAZ=qux\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"html-table\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"env\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"query-string\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"base64\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "env → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"env\",\n  \"to\": \"pdf\",\n  \"data\": \"FOO=bar\\nBAZ=qux\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From query-string",
      "item": [
        {
          "name": "query-string → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"json\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"xml\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"csv\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"tsv\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"excel\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"yaml\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"ndjson\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"sql-insert\",\n  \"data\": \"name=John&age=30\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"html-table\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"env\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"query-string\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"base64\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "query-string → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"query-string\",\n  \"to\": \"pdf\",\n  \"data\": \"name=John&age=30\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "From base64",
      "item": [
        {
          "name": "base64 → json",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"json\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → xml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/xml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"xml\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → csv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/csv"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"csv\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → tsv",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/tab-separated-values"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"tsv\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"excel\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → yaml",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/yaml"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"yaml\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → ndjson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/x-ndjson"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"ndjson\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → sql-insert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"sql-insert\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\",\n  \"options\": {\n    \"output\": {\n      \"sqlInsert\": {\n        \"tableName\": \"users\"\n      }\n    }\n  }\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → html-table",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/html"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"html-table\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → env",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"env\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → query-string",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"query-string\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → base64",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "text/plain"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"base64\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        },
        {
          "name": "base64 → pdf",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Accept",
                "value": "application/pdf"
              },
              {
                "key": "x-rapidapi-key",
                "value": "{{rapidapi_key}}",
                "type": "text"
              },
              {
                "key": "x-rapidapi-host",
                "value": "universal-data-format-converter.p.rapidapi.com",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from\": \"base64\",\n  \"to\": \"pdf\",\n  \"data\": \"eyJuYW1lIjoiSm9obiIsImFnZSI6MzB9\"\n}"
            },
            "url": {
              "raw": "https://universal-data-format-converter.p.rapidapi.com/convert",
              "protocol": "https",
              "host": [
                "universal-data-format-converter",
                "p",
                "rapidapi",
                "com"
              ],
              "path": [
                "convert"
              ]
            }
          }
        }
      ]
    }
  ]
}