/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/dna-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dna-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dna-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"notes": "Sequence uses A, C, G, T (DNA) or U (RNA); case- and whitespace-insensitive. Translation uses the standard genetic code; * marks a stop codon.",
"service": "dna-api",
"formulae": {
"tm_basic": "64.9 + 41·(GC − 16.4) / length",
"gc_content": "(G+C) / length",
"tm_wallace": "4·(G+C) + 2·(A+T)"
},
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/analyze": "Length, base counts, GC content, complement, reverse complement and molecular weight.",
"GET /v1/melting": "Primer melting temperature (Wallace rule and salt-adjusted basic formula).",
"GET /v1/translate": "Transcribe DNA→mRNA and translate to protein in frame 1, 2 or 3."
},
"description": "DNA/RNA sequence analysis: base composition, GC content and reverse complement; transcription and translation to protein in any reading frame; and primer melting temperature."
},
"meta": {
"timestamp": "2026-06-05T03:09:03.063Z",
"request_id": "e81535bf-df4c-4a7b-811e-316764607220"
},
"status": "ok",
"message": "Meta",
"success": true
}