Vai al contenuto
GET /v1/analyze

Sequence analysis

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/dna-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}