Naar de inhoud
GET /v1/dedupe

Deduplicate a list

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/setops-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/setops-api/v1/dedupe" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/setops-api/v1/dedupe", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/setops-api/v1/dedupe");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/setops-api/v1/dedupe",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "result": [
            "a",
            "b",
            "c"
        ],
        "removed": 2,
        "input_count": 5,
        "unique_count": 3
    },
    "meta": {
        "timestamp": "2026-06-03T01:09:39.871Z",
        "request_id": "f3110614-3856-4f6b-b1fa-25dd104f784f"
    },
    "status": "ok",
    "message": "Deduplicate a list",
    "success": true
}