/v1/encode
Encode integers to a hashid
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/hashids-api/v1/encode" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hashids-api/v1/encode", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hashids-api/v1/encode");
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/hashids-api/v1/encode",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"hash": "7LC9u4",
"salt": "my-salt",
"numbers": [
1,
2,
3
],
"min_length": 0
},
"meta": {
"timestamp": "2026-06-02T16:52:00.047Z",
"request_id": "26e11334-d9ea-4078-8186-91d7c5cdddc0"
},
"status": "ok",
"message": "Encode integers to a hashid",
"success": true
}