/v1/info
Blood type details
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/bloodtype-api/v1/info" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bloodtype-api/v1/info", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bloodtype-api/v1/info");
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/bloodtype-api/v1/info",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Antigens present, plasma antibodies, and RBC/plasma compatibility for this type.",
"type": "A+",
"antigens": [
"A",
"RhD"
],
"disclaimer": "Educational only — actual transfusion requires laboratory cross-matching and clinical judgement. Not medical advice.",
"plasma_antibodies": [
"anti-B"
],
"rbc_can_donate_to": [
"A+",
"AB+"
],
"universal_rbc_donor": false,
"plasma_can_donate_to": [
"O-",
"O+",
"A-",
"A+"
],
"rbc_can_receive_from": [
"O-",
"O+",
"A-",
"A+"
],
"us_frequency_percent": 35.7,
"universal_plasma_donor": false,
"universal_rbc_recipient": false
},
"meta": {
"timestamp": "2026-06-04T01:59:17.160Z",
"request_id": "49d6cf00-b596-4950-b9eb-c3756da3b360"
},
"status": "ok",
"message": "Blood type info",
"success": true
}