Naar de inhoud
GET /v1/melting

Melting temperature

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/dna-api/v1/melting" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dna-api/v1/melting", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dna-api/v1/melting");
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/dna-api/v1/melting",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

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

{
    "data": {
        "note": "Wallace rule Tm = 4·(G+C) + 2·(A+T) suits primers under ~14 bases; for longer oligos the salt-adjusted basic formula 64.9 + 41·(GC−16.4)/length is better.",
        "inputs": {
            "length": 20
        },
        "tm_basic_c": 51.78,
        "recommended": "tm_basic_c",
        "tm_wallace_c": 60,
        "gc_content_percent": 50
    },
    "meta": {
        "timestamp": "2026-06-05T03:09:02.930Z",
        "request_id": "93f3859d-b1f0-4eb7-8a42-b9130769f468"
    },
    "status": "ok",
    "message": "Melting temp",
    "success": true
}