Ir al contenido
GET /v1/meta

Spec

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/dna-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}