Current TOTP code
API · /totp-api
TOTP / 2FA API
Agregue y pruebe la autenticación de dos factores sin lidiar con una biblioteca criptográfica. Genere un secreto base32 nuevo con un URI otpauth listo para escanear, calcule el código único basado en tiempo actual (RFC 6238), verifique un código enviado por un usuario con una ventana de deriva ajustable, o construya un URI otpauth:// para cualquier secreto. Compatible con SHA-1, SHA-256 y SHA-512, de 6 a 8 dígitos y un período personalizado, y es totalmente compatible con Google Authenticator, Authy, 1Password y otras aplicaciones de autenticación. Cálculo puro del lado del servidor sin terceros, por lo que las respuestas son instantáneas y el servicio está siempre disponible. Ideal para agregar 2FA a aplicaciones, herramientas de autenticación, control de calidad y pruebas, y automatización sin código.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 78 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,707
- attiva
- Chiamate totali
- 76
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 1,500 chiamate/mese
- 3 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1,500 requests/month, 3 req/s
- Secret, code, verify & otpauth URI
- RFC 6238, Authenticator-compatible
- No credit card
Basic
€5.00 /mese
- 30,000 chiamate/mese
- 10 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 30,000 requests/month, 10 req/s
- SHA1/256/512, 6-8 digits
- Adjustable drift window
- Commercial use, email support
Pro
€17.00 /mese
- 250,000 chiamate/mese
- 30 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 250,000 requests/month, 30 req/s
- High-volume verification
- Custom period & issuer
- Priority email support
Mega
€46.00 /mese
- 1,500,000 chiamate/mese
- 80 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1,500,000 requests/month, 80 req/s
- Auth-platform scale
- Maximum concurrency
- Priority support
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Temp Mail API
API de correo electrónico desechable / temporal — sin clave, sin registro. Crea un buzón desechable en una sola llamada (obtienes la dirección más un token), luego recibe correos entrantes reales y léelos: lista la bandeja de entrada, abre cualquier mensaje con su cuerpo HTML y texto plano completo y archivos adjuntos, marca mensajes como vistos, elimina un solo mensaje o elimina todo el buzón cuando termines. Lista los dominios de buzón disponibles y consulta los detalles de la cuenta (cuota, uso). Perfecto para flujos de registro, captura de OTP / código de verificación, automatización de pruebas QA y de extremo a extremo, y registros desechables. Los endpoints de la bandeja de entrada usan un token por buzón devuelto por /v1/account/new (pásalo como ?token= o un encabezado Authorization: Bearer). Cada llamada es en vivo (sin caché). 9 endpoints, respaldados por el servicio público mail.tm. Los buzones son efímeros. Sin clave upstream, sin caché.
api.oanor.com/tempmail-api
Bcrypt API
Hash and verify passwords with bcrypt, server-side. Generate a salted bcrypt hash at a cost factor you choose (4–14), check a plaintext password against an existing hash, or inspect a hash to read its bcrypt version, cost factor and salt. Fully compatible with bcrypt hashes from PHP ($2y$), Node, Python and others, so you can verify and migrate existing credentials. Pure server-side computation with no third-party upstream, so it is always available — and it offloads the deliberately CPU-intensive hashing work from your own servers. Ideal for adding password authentication, credential migration, auth tooling, testing and no-code backends.
api.oanor.com/bcrypt-api
JWT API
A fast, fully-local JSON Web Token toolkit: sign a JSON payload into a JWT, verify a token signature together with its exp and nbf claims using a constant-time comparison, and decode a token header and payload without verifying. Supports the HMAC algorithms HS256, HS384 and HS512, automatically adds the iat claim and an exp claim from expires_in. Built on Node crypto and secrets are never logged, so responses are instant, private and always available. Every endpoint accepts input via the query string or the request body. Ideal for authentication, API gateways, session and token tooling, microservices and webhooks.
api.oanor.com/jwt-api
Shentu API
Live on-chain data for Shentu (chain id shentu-2.2) — the security-focused Cosmos-SDK Layer-1 of the CertiK ecosystem, whose native token is CTK — served directly from public LCD/REST nodes with multi-node failover. The status endpoint returns the latest block height and time, chain id, the staking bond denom and the current minting inflation rate. The validators endpoint lists the active bonded validator set ranked by stake, each with its moniker, operator address, self-plus-delegated CTK, commission rate and jailed flag. The supply endpoint returns the total CTK supply, the amount bonded in staking and the resulting bonded ratio. The governance endpoint returns the most recent on-chain proposals with their id, title, status and voting window. Token amounts are converted from base micro-CTK (6 decimals) into whole CTK, and every figure is read live from the chain — nothing bundled or modelled — behind a short server-side cache with keep-warm so the feed stays fast and fresh. Ideal for staking dashboards, validator and delegator tooling, explorers, governance trackers and portfolio or analytics apps across the Cosmos and security-infrastructure ecosystem. Live keyless upstream. 5 endpoints.
api.oanor.com/shentu-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per TOTP / 2FA API?
Qual è il limite di velocità di TOTP / 2FA API?
Quanto costa TOTP / 2FA API?
Posso cancellare l'abbonamento in qualsiasi momento?
TOTP / 2FA API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/totp-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/totp-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/totp-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/totp-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.