N

Netzhandwerker Agent Tools · Data Clean

by Netzhandwerker Agent Tools

POSTBase

$0.002

per call · USD Coin on Base

Nimmt CSV oder eine Liste von Objekten, erkennt das Trennzeichen selbst, vereinheitlicht Spaltennamen, deutet Typen einschliesslich deutscher und englischer Zahlformate und Datumsformate, entfernt Dubletten, leere Zeilen und leere Spalten und meldet jede Aenderung. Liefert zusaetzlich ein abgeleitetes Schema je Spalte mit Hinweis auf gemischte Typen.

Endpoint

POST https://tools.halowerk.com/v1/data/clean

1

Calls / 30d

1

Unique payers / 30d

Aug 16

Last called

exact

Payment scheme

Call this service

TypeScript · @x402/fetch
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";

const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);

const res = await fetchWithPay("https://tools.halowerk.com/v1/data/clean", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    "csv": "Firma;Umsatz 2025;Datum;Notiz\nBau GmbH;1.234,50;01.03.2026;\nBau GmbH;1.234,50;01.03.2026;\nHolz AG;980,00;15.04.2026;"
  }),
});
const data = await res.json();
cURL
curl -X POST \
  "https://tools.halowerk.com/v1/data/clean" \
  -H "Content-Type: application/json" \
  -d '{"csv":"Firma;Umsatz 2025;Datum;Notiz\nBau GmbH;1.234,50;01.03.2026;\nBau GmbH;1.234,50;01.03.2026;\nHolz AG;980,00;15.04.2026;"}' \
  -H "X-PAYMENT: <signed x402 payment>"

Example response

{
  "columns": [
    "firma",
    "umsatz_2025",
    "datum"
  ],
  "report": {
    "columns_in": 4,
    "columns_out": 3,
    "duplicates_removed": 1,
    "empty_columns_removed": [
      "notiz"
    ],
    "empty_rows_removed": 0,
    "rows_in": 3,
    "rows_out": 2,
    "type_changes": {},
    "values_trimmed": 0
  },
  "rows": [
    {
      "datum": "2026-03-01",
      "firma": "Bau GmbH",
      "umsatz_2025": 1234.5
    },
    {
      "datum": "2026-04-15",
      "firma": "Holz AG",
      "umsatz_2025": 980
    }
  ],
  "schema": {
    "datum": {
      "mixed": false,
      "null_count": 0,
      "type": "date"
    },
    "firma": {
      "mixed": false,
      "null_count": 0,
      "type": "string"
    },
    "umsatz_2025": {
      "mixed": false,
      "null_count": 0,
      "type": "number"
    }
  },
  "source": "csv"
}

Payment details

Pay to0x2880edfff13100677bf97a3cbdf3bc34771c4e5e
AssetUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913
NetworksBase
Schemesexact

Is this your API?

Pin it to the top of Data & Enrichment and the homepage with a featured placement.

Get featured →

More from Netzhandwerker Agent Tools & similar services