Generate mock data from a JSON Schema
API · /schemamock-api
Schema Mock API
Genera dati mock realistici da uno Schema JSON. Invia qualsiasi Schema JSON e ottieni dati che vi si conformano — rispettando tipi, formati (email, uuid, date-time, uri, ipv4 e altro), minimo/massimo, lunghezza delle stringhe e pattern, enum, campi obbligatori, e oggetti e array annidati. Richiedi un singolo oggetto o un array fino a 100 elementi. Aggiungi una parola chiave "faker" su una proprietà (es. "faker":"person.fullName" o "commerce.product") per ottenere valori realistici specifici alimentati da Faker. A differenza dei generatori di dati fittizi a entità fissa, la forma è interamente guidata dal tuo schema — perfetto per il mocking di API, fixture di test, popolamento di database, prototipazione e test di contratto. Generazione locale pura — nessuna chiave, nessun servizio di terze parti, istantanea. Live. 2 endpoint. Distinto dalla validazione di Schema JSON e dalle entità di dati fittizi preconfezionate.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 79 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,862
- attiva
- Chiamate totali
- 38
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 1,420 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1,420 calls/month
- 2 req/sec
- Schema-driven, up to 100/req
- No credit card
Starter
€6.00 /mese
- 24,000 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 24k llamadas/mes
- 8 req/seg
- Valores Faker + formatos
- Soporte por correo electrónico
Pro
€25.60 /mese
- 174,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 174k calls/month
- 20 req/sec
- API mocking / fixtures
- Priority support
Mega
€61.60 /mese
- 890,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 890k calls/month
- 50 req/sec
- Platform scale
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
JSON Types API
Infer a schema or types from a sample JSON document — the fastest way to get a contract out of an example API response. Pass a JSON sample and the schema endpoint returns a JSON Schema (Draft 2020-12) with detected types, required keys, array item schemas merged across elements, and recognised string formats (email, uri, uuid, date-time, date, ipv4); the typescript endpoint returns ready-to-paste TypeScript interfaces with named nested interfaces, typed arrays, unions for mixed-shape array elements and structural de-duplication. Supply the sample inline via ?json=, as a query parameter, or as a request body. Everything is computed locally with no network calls, so it is fast and deterministic. Built for scaffolding types from real API responses, generating validation schemas, documentation, contract testing and code generation. A JSON type/schema inferer — distinct from JSON-Schema validation (jsonschema), JSON pretty-printing and conversion (json), and JSON diff/patch (jsondiff). No upstream key, no cache.
api.oanor.com/jsontypes-api
Mock Data API
Genera datos falsos realistas: usuarios, direcciones postales, empresas y productos, para pruebas, prototipos, demostraciones y siembra de bases de datos. Localizable a muchos idiomas y regiones para nombres, direcciones y números de teléfono. Llamadas deterministas y del lado del servidor, ideal para fixtures de CI y estados mock del frontend.
api.oanor.com/mockdata-api
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
Programming Languages API
The language definitions GitHub uses to recognise code (the open-source Linguist data) as an API — a clean reference for syntax highlighting, file-type detection, repository dashboards and developer tooling. For each of 800+ languages the API returns its type (programming, markup, data or prose), its brand colour (the hex GitHub paints it), the file extensions associated with it, common aliases, the GitHub language id and the editor (ace) mode. Look a language up by name or alias (golang resolves to Go), reverse-look-up which language(s) own a file extension (.py → Python; .h → C, C++, Objective-C), list the languages of a type, search, or list them all. Distinct from languages-api (ISO 639 human languages) — this is the programming-language reference. Served from memory — always fast.
api.oanor.com/proglang-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Schema Mock API?
Qual è il limite di velocità di Schema Mock API?
Quanto costa Schema Mock API?
Posso cancellare l'abbonamento in qualsiasi momento?
Schema Mock 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/schemamock-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/schemamock-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/schemamock-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/schemamock-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.