Generate a maze
API · /maze-api
Maze API
Genera y resuelve laberintos — completamente local y reproducible. El endpoint generate construye un laberinto perfecto (exactamente un camino entre dos celdas cualesquiera, sin bucles) del ancho y alto que elijas, usando ya sea un algoritmo de retroceso recursivo (pasillos largos y sinuosos) o el algoritmo de Prim (más ramificaciones, callejones sin salida más cortos), y lo devuelve como arte ASCII listo para imprimir más una cuadrícula compacta de máscara de bits por celda, con la entrada marcada en la esquina superior izquierda y la salida en la inferior derecha. Cada laberinto es completamente reproducible: pasa una semilla y siempre obtienes exactamente el mismo laberinto en cualquier máquina, y la semilla se devuelve cuando la omites para que puedas recrearlo después. El endpoint solve recrea el laberinto a partir de la misma semilla, ancho, alto y algoritmo, y devuelve el camino más corto desde el inicio hasta el final, tanto como una lista ordenada de celdas como dibujado sobre el laberinto. Todo se calcula local y deterministicamente, por lo que es instantáneo y privado. Ideal para juegos y acertijos, generación de niveles procedurales, enseñanza de algoritmos y búsqueda en grafos, hojas de actividades imprimibles y codificación creativa. Cómputo local puro — sin clave, sin servicio de terceros, instantáneo. En vivo, nada almacenado. 3 endpoints.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 90 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,240
- attiva
- Chiamate totali
- 42
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 3,735 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 3,735 calls/month
- 2 req/sec
- Generate + solve
- No credit card
Starter
€5.25 /mese
- 13,250 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 13.25k calls/month
- 8 req/sec
- Seeded + 2 algorithms
- Email support
Pro
€25.15 /mese
- 183,500 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 183.5k calls/month
- 20 req/sec
- Game / level-gen pipelines
- Priority support
Mega
€63.15 /mese
- 960,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 960k calls/month
- 50 req/sec
- Platform scale
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Avatar API
Generate deterministic avatars and identicons from any seed — the same seed always renders the exact same avatar, so user IDs, usernames or emails map to stable, unique profile pictures with no storage. 30 art styles (bottts robots, pixel-art, avataaars, identicon, lorelei, notionists, fun-emoji, shapes, rings and more), returned as ready-to-use SVG markup or a base64 PNG data-URI, with options for size, corner radius, background colour and flip. Backed by DiceBear. Ideal for default user avatars, comment/forum placeholders, dashboards, game characters, test fixtures and any UI that needs an instant, reproducible profile image.
api.oanor.com/avatar-api
Sudoku API
Generate, solve and validate Sudoku puzzles through a fast, fully-local API. Create fresh puzzles at four difficulty levels (easy, medium, hard, expert), each guaranteed to have exactly one solution, returned as both an 81-character string and a 9x9 grid alongside the full solution. Solve any valid puzzle with a backtracking engine that also reports whether the solution is unique, and validate a grid to detect rule conflicts and completeness. Inputs accept an 81-character string (0 or . for blanks) or a 9x9 array, by GET or JSON POST. Pure server-side compute with no third-party upstream, so responses are instant and the service is always available. Ideal for puzzle apps and games, newspapers and printables, tutors and training-data generation.
api.oanor.com/sudoku-api
Password API
A fast, fully-local password toolkit: generate cryptographically-secure random passwords (configurable length, character classes and exclude-similar), estimate password strength (entropy bits, a 0-4 score, character-class breakdown, common-password detection, an offline crack-time estimate and actionable feedback), and create memorable diceware-style passphrases. Built on Node crypto, no third-party upstream, and inputs are never logged — so responses are instant, private and always available. Ideal for signup and account flows, admin tools, password managers and security features.
api.oanor.com/password-api
Barcode API
Generate barcodes as PNG images — EAN-13, EAN-8, UPC-A/E, Code 128, Code 39, ITF-14, ISBN and 2D codes (QR, Data Matrix, PDF417, Aztec) — returned as base64 or a raw image, with adjustable size and human-readable text. Fully server-side. Perfect for retail, inventory, shipping labels, ticketing and asset tracking.
api.oanor.com/barcode-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Maze API?
Qual è il limite di velocità di Maze API?
Quanto costa Maze API?
Posso cancellare l'abbonamento in qualsiasi momento?
Maze 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/maze-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/maze-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/maze-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/maze-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.