/v1/analyze
Sequence analysis
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/dna-api/v1/analyze" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dna-api/v1/analyze", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dna-api/v1/analyze");
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/analyze",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "GC content = (G+C)/length. Reverse complement reads the opposite strand 5'→3'. Molecular weight is the approximate single-stranded value.",
"inputs": {
"type": "DNA",
"length": 8
},
"length": 8,
"reverse": "CGTACGTA",
"complement": "TACGTACG",
"base_counts": {
"A": 2,
"C": 2,
"G": 2,
"T": 2,
"U": 0
},
"at_content_percent": 50,
"gc_content_percent": 50,
"reverse_complement": "GCATGCAT",
"molecular_weight_g_mol": 2409.64
},
"meta": {
"timestamp": "2026-06-05T03:09:02.860Z",
"request_id": "cbde2b1c-019b-4cd9-9053-f45b712e2402"
},
"status": "ok",
"message": "Sequence analysis",
"success": true
}