Testing & mock-data tools
This hub collects the developer tools for testing and mock data — realistic fake users, API responses, database records, payloads, and the test cases to exercise them. Everything runs in your browser with no real personal data involved, so you can seed dev environments and write tests without touching production. Pick a tool below.
159 tools in this collection
Constructor de comandos cURL
Genera un comando curl listo para ejecutar a partir de un método, una URL y cabeceras
A cURL command builder assembles a correct, copy-paste-ready curl invocation from the pieces you choose, so you can test an API endpoint from the terminal without remembering every flag. Pick the HTTP method, paste the URL, and decide whether to attach a bearer token, and it returns the full command with the right headers, an Accept header, a Content-Type and JSON body for write methods, and a backslash-continued multi-line layout that stays readable.
Text•3 inputsClick to open →
Explicador de códigos de estado HTTP
Explica un código de estado HTTP y cuándo usarlo
An HTTP status code explainer tells you what a code means and, just as importantly, when you should return it, so your API speaks the protocol correctly. Pick a code and it returns the standard name, the class it belongs to — success, redirection, client error, or server error — and a plain-English note on the situation it describes and the headers that go with it, like Location for a 201 or Retry-After for a 429.
Text•1 inputClick to open →
Explicador de Códigos de Estado HTTP
Explica un código de estado HTTP aleatorio en profundidad: significado, cuándo usarlo y un ejemplo
An HTTP status code explainer takes a status code and explains it in depth — its meaning, when to use it, and a concrete example. Status codes are how the web signals success, redirection, and error, and choosing the right one makes an API clear and correct.
Text•1 inputClick to open →
Generador Aleatorio de Códigos de Estado HTTP
Devuelve un código de estado HTTP aleatorio con su nombre y significado para pruebas y aprendizaje
A random HTTP status code generator returns a real status code paired with its official name and a plain-English explanation — for example, 404 Not Found or 503 Service Unavailable. It is a quick study aid for anyone learning how the web communicates success, redirection, and errors, and a handy way to pick realistic codes when mocking API responses or writing tests.
Text•1 inputClick to open →
Generador aleatorio de puertos y servicios
Genera números de puerto de red aleatorios con los nombres de servicio asociados para configuraciones de desarrollo y pruebas
A random port and service generator removes the real friction of picking non-conflicting port numbers during local dev setup. Developers reach for it when spinning up microservices, Docker Compose stacks, or Kubernetes dev clusters and need a clean list of ports fast.
List•3 inputsClick to open →
Generador de .gitignore de ejemplo
Genera un archivo .gitignore de ejemplo para tipos de proyecto habituales
A mock .gitignore generator produces an example .gitignore file for common project types. The .gitignore file tells Git which files and folders to leave untracked — dependencies, build output, secrets, and editor clutter — and getting it right early keeps a repository clean.
Text•1 inputClick to open →
Generador de archivos .env simulados
Genera un archivo de variables de entorno falso para pruebas y documentación
A mock .env file generator produces a fake environment variable file, complete with the kinds of keys a real application uses — database URLs, API keys, secrets, SMTP settings, and ports. When you are writing documentation, onboarding a teammate, or testing how your app loads configuration, you need a realistic .env example without exposing any real credentials.
Text•0 inputsClick to open →
Generador de archivos de configuración de prueba
Genera archivos de configuración de prueba realistas en formato JSON, YAML y TOML para probar aplicaciones
A dummy config file generator removes the tedium of hand-writing placeholder configuration files every time you scaffold a new service or write a parser test. Developers use it to get a realistic, ready-to-edit starting point in JSON, YAML, or TOML — complete with contextually correct fields like connection pool sizes, rate limits, log levels, and timeouts.
Text•2 inputsClick to open →
Generador de ARN de AWS Simulados
Genera cadenas de ARN de AWS falsas y realistas para políticas IAM, pruebas y documentación
A mock AWS ARN generator gives you structurally valid Amazon Resource Names before any real infrastructure exists. ARNs follow the pattern arn:partition:service:region:account-id:resource, and every segment must be correct for tools like cfn-lint, aws iam simulate-policy, and Terraform's static analysis to accept them without errors.
List•2 inputsClick to open →
Generador de arreglos JSON ficticios
Genera arreglos de objetos JSON falsos con campos configurables para simulación y pruebas de API
A dummy JSON array generator produces arrays of realistic dummy JSON objects for testing, development, and seeding databases. When you are building against an API that does not exist yet, populating a list view, or writing tests that expect a collection, hand-typing JSON objects is slow and error-prone.
Text•2 inputsClick to open →
Generador de Bearer Tokens de Prueba
Genera Bearer tokens de prueba con aspecto realista para pruebas de API y autenticación simulada
A dummy bearer token generator gives developers realistic Authorization header values without exposing real credentials or touching live auth systems. When building REST APIs, writing integration tests, or configuring mock servers, you need tokens that pass format validation — but using real tokens in shared Postman collections or committed test fixtures is a security risk.
List•2 inputsClick to open →
Generador de biografías de usuario de prueba
Genera biografías de usuario breves de marcador de posición para maquetas de perfiles y datos de prueba
A dummy user bio generator produces short, realistic placeholder bios for profile cards, user lists, and mockups. When you design a profile page or a team grid, lorem ipsum in the bio field looks obviously fake and throws off the layout; real bios have a recognisable voice and length.
Text•1 inputClick to open →
Generador de bloques CIDR de prueba
Genera bloques de direcciones IP aleatorias en notación CIDR para pruebas de configuración de red
The dummy CIDR block generator creates randomized CIDR notation IP ranges for network configuration testing, saving you from hand-crafting subnet addresses every time you need plausible test data. CIDR notation pairs a base IP with a prefix length — like 10.0.0.0/16 — to define an address block, and it's the standard format across AWS VPCs, Azure VNets, GCP firewall rules, and Kubernetes network policies.
List•2 inputsClick to open →
Generador de cabeceras CSP simuladas
Genera cabeceras Content-Security-Policy de ejemplo para seguridad web
A mock CSP header generator produces example Content-Security-Policy headers for learning, testing, and documentation. CSP is a powerful browser security feature that controls which sources a page may load scripts, styles, images, and other resources from, helping defend against cross-site scripting and injection attacks.
Text•1 inputClick to open →
Generador de cabeceras de cookie simuladas
Genera valores de ejemplo para cabeceras Set-Cookie con atributos realistas
A mock cookie header generator produces example Set-Cookie header values with realistic attributes for testing and documentation. The Set-Cookie header has a specific format — a name and value followed by attributes like Path, HttpOnly, Secure, and SameSite — and code that sets, parses, or tests cookies needs realistic samples.
List•1 inputClick to open →
Generador de cabeceras de licencia de prueba
Genera comentarios de cabecera de licencia para archivos fuente en formatos comunes
A mock license header generator produces the comment block that goes at the top of a source file to declare its license. Many projects add a short license header to each file, stating the copyright and the terms under which the code may be used, and getting the wording right matters legally.
Text•1 inputClick to open →
Generador de cabeceras de límite de tasa simuladas
Genera cabeceras de respuesta de ejemplo de límite de tasa de API para pruebas
A mock rate limit header generator produces example API rate-limiting response headers for testing and learning. APIs use rate-limit headers to tell clients how many requests they may make and when the limit resets, and code that respects rate limits needs realistic headers to test against.
List•0 inputsClick to open →
Generador de cabeceras HTTP de prueba
Genera cabeceras de solicitud HTTP falsas y realistas para pruebas y desarrollo de API
A mock HTTP header generator saves real time when you need realistic request headers for API testing, middleware validation, or traffic simulation. Handwriting header sets is slow, and minimal test headers miss edge cases that only surface with real client signatures — a missing Accept-Language can break localization logic, a wrong Content-Type silently fails parsing.
List•2 inputsClick to open →
Generador de cadenas de conexión a bases de datos simuladas
Genera cadenas de conexión a bases de datos falsas para bases de datos comunes
A mock database connection string generator produces fake connection URLs for the databases developers use most — PostgreSQL, MySQL, MongoDB, Redis, and SQL Server. Connection strings follow a precise format for each database, and code or documentation that handles them needs realistic examples without revealing any real host or password.
List•1 inputClick to open →
Generador de Cadenas User-Agent Simuladas
Genera cadenas user-agent de navegador realistas para pruebas y peticiones simuladas
A mock user-agent string generator produces realistic browser user-agent headers for testing, mock requests, and sample analytics data. The user-agent string identifies the browser, engine, and operating system behind a request, and code that parses, logs, or branches on it needs a varied set of realistic examples to test against.
List•1 inputClick to open →
Generador de Cargas de Event Sourcing Simuladas
Genera cargas de eventos de dominio realistas para patrones de event sourcing y CQRS
The mock event sourcing payload generator produces fully-structured domain event objects for testing event-driven systems built on event sourcing and CQRS patterns. Each payload includes an event ID, aggregate ID, version number, ISO timestamp, event type, and metadata fields like correlation ID and causation ID — everything a real domain event needs without hand-crafting JSON fixtures.
List•2 inputsClick to open →
Generador de casos de prueba de API
Genera una lista de casos de prueba para un endpoint de API
An API test case generator hands you a focused checklist of the scenarios worth testing for an endpoint, so your coverage goes beyond the happy path. Choose the HTTP method and it returns cases tailored to it — creation and validation for POST, idempotency and staleness for PUT, cascade behaviour for DELETE, pagination and filtering for GET — alongside the cross-cutting checks every endpoint needs: authentication, authorisation, missing resources, and rate limiting.
List•1 inputClick to open →
Generador de Casos de Prueba de Ejemplo
Genera casos de prueba unitaria base en frameworks de testing populares para acelerar la configuración de TDD
A dummy test case generator solves one of TDD's most tedious bottlenecks: the blank file. Instead of recalling the exact syntax for a Jest `describe` block or a Pytest fixture, you pick your framework, set a count, and get a complete scaffold in seconds.
List•2 inputsClick to open →
Generador de casos de prueba unitaria
Genera un esqueleto de prueba estilo Jest con casos de ejemplo para una función
A unit test case generator scaffolds a Jest-style test file for a function, complete with a describe block and a set of it cases ready for you to fill in. Enter the function name and how many cases you want, and it returns a skeleton covering the situations every function should be tested against — typical input, edge cases, invalid input, boundary values, and more — each with arrange, act, and assert comments.
Text•2 inputsClick to open →
Generador de claves API aleatorias
Genera claves API aleatorias en formatos comunes para desarrollo y pruebas
A random API key generator gives developers realistic, properly formatted keys without spinning up a real service. Use it when writing API docs, seeding test databases, or mocking authentication in a staging environment — keys that don't match expected formats break reader trust and introduce subtle bugs.
List•2 inputsClick to open →
Generador de claves de API aleatorias
Genera claves de API aleatorias de aspecto seguro en varios formatos para desarrollo y pruebas
A random API key generator helps developers create realistic placeholder keys for testing, documentation, and local development — without touching real credentials. Instead of hardcoding `XXXXXXXX` or accidentally leaking live secrets, you get properly formatted keys that match the length and structure your code expects.
List•2 inputsClick to open →
Generador de Claves de API Falsas
Genera claves de API falsas con aspecto realista en formatos comunes para pruebas y documentación
A fake API key generator helps developers create realistic placeholder credentials that match the exact format of real services — without granting any actual access. When writing documentation, populating fixture files, or testing authentication middleware, keys like 'YOUR_API_KEY_HERE' don't cut it.
List•2 inputsClick to open →
Generador de Claves de Licencia Falsas
Genera claves de licencia de software falsas en formatos comunes para probar flujos de activación
A fake license key generator produces software license keys in the familiar segmented format for testing activation flows, license fields, and UI mockups. When you build a product that accepts license or product keys, you need realistic-looking keys to test the input, validation, and activation screens — without using or exposing any real keys.
List•1 inputClick to open →
Generador de Comandos CLI Simulados
Genera comandos CLI falsos y realistas para documentación, tutoriales y pruebas de scripts de shell
A mock CLI command generator is the fastest way to fill documentation, tutorials, and workshop materials with realistic shell examples — without waiting for real infrastructure. It supports Docker, kubectl, Git, npm, curl, and the AWS CLI, producing commands that include authentic subcommands, flags, and plausible resource names.
List•2 inputsClick to open →
Generador de comandos cURL
Genera comandos curl de ejemplo para cualquier método HTTP para usar en documentación, pruebas y aprendizaje
A cURL command generator produces ready-to-run example curl commands for any HTTP method. curl is the universal tool for calling APIs from the command line, and a well-formed example is the clearest way to document an endpoint, reproduce a request, or learn the syntax.
Text•1 inputClick to open →
Generador de comandos cURL de prueba
Genera comandos cURL realistas para pruebas y documentación de API REST
A dummy cURL command generator saves you from writing HTTP request syntax by hand every time you need a quick example. Each output includes a plausible endpoint URL, the correct method flag, a Bearer token authorization header, and a well-formed JSON body for methods that need one — ready to paste into a terminal, README, or wiki page.
List•2 inputsClick to open →
Generador de comandos de Redis simulados
Genera comandos de Redis de ejemplo para aprender y probar
A mock Redis command generator produces example Redis commands for learning, documentation, and testing. Redis has a rich command set spanning strings, hashes, lists, sets, and sorted sets, and seeing realistic commands in context is one of the fastest ways to learn the patterns or to seed examples.
List•1 inputClick to open →
Generador de configuración de pipeline CI de ejemplo
Genera una configuración YAML de pipeline CI de ejemplo para pruebas y aprendizaje
A mock CI pipeline config generator produces an example continuous-integration workflow in YAML for learning, testing, and documentation. CI configs follow a structure of triggers, jobs, and steps, and a realistic sample is the fastest way to see how a pipeline checks out code, installs dependencies, and runs lint, tests, and a build.
Text•0 inputsClick to open →
Generador de configuración YAML ficticia
Genera un archivo de configuración YAML ficticio y realista para pruebas
A dummy YAML config generator produces a realistic configuration file in YAML, the format used by countless tools, services, and CI pipelines. When you are testing a config parser, writing documentation, or building an example for a tutorial, you need a plausible config with nested structure rather than crafting one by hand.
Text•0 inputsClick to open →
Generador de Configuraciones de Feature Flags Simuladas
Genera objetos de configuración de feature flags falsos y realistas para probar sistemas de feature toggles
The mock feature flag config generator produces realistic fake feature toggle configs for testing flag evaluation logic, CI/CD pipelines, and admin UIs without touching production data. Engineers integrating LaunchDarkly, Unleash, Flagsmith, or homegrown toggle systems need varied, believable configs to cover real-world edge cases — flags at 0% rollout in staging, 50% in canary, 100% in production.
Text•2 inputsClick to open →
Generador de configuraciones de pipeline CI/CD simuladas
Genera archivos de configuración de pipeline CI/CD simulados realistas para plataformas populares
A mock CI/CD pipeline config generator saves you from memorizing the YAML quirks of four different platforms at once. Select your platform — GitHub Actions, GitLab CI, CircleCI, or Bitbucket Pipelines — then pick a project type (Node.js, Python, Docker, or Java), and get a complete, copy-paste-ready config with install, test, and build stages already wired up using each platform's real conventions.
Text•2 inputsClick to open →
Generador de configuraciones de red simuladas
Genera bloques de configuración de red falsos pero realistas, con IP, subredes y puertas de enlace
The mock network config generator produces realistic, test-safe network configuration blocks for hosts, interfaces, firewall rules, and VPN peers — without any manual fabrication. Network engineers, backend developers, and QA teams use it when they need plausible-looking config data fast: valid IP addresses, CIDR notation, MAC addresses, gateway fields, and protocol-specific flags, all structured consistently across every block.
List•2 inputsClick to open →
Generador de configuraciones nginx simuladas
Genera configuraciones de ejemplo de bloques de servidor de nginx para pruebas
A mock nginx config generator produces example server block configurations for learning, testing, and documentation. Nginx config has its own syntax of blocks and directives, and a realistic sample is the fastest way to see how a server block, a proxy pass, and a static location fit together.
Text•0 inputsClick to open →
Generador de Configuraciones TOML Simuladas
Genera archivos de configuración TOML falsos y realistas para el desarrollo y las pruebas de aplicaciones
A mock TOML config generator produces structurally valid, realistic configuration files in seconds — no more writing boilerplate by hand. TOML is the standard format for Rust's Cargo.toml, Python's pyproject.toml, Hugo sites, Gitea, and InfluxDB.
Text•2 inputsClick to open →
Generador de Configuraciones XML Simuladas
Genera archivos de configuración XML realistas para pruebas y desarrollo
A mock XML config generator gives you a complete, well-formed XML configuration file in seconds — no boilerplate, no hand-rolling property nodes. Set your app name and choose how many config entries to include, and the tool outputs a valid XML 1.0 document with a proper declaration, a named root element, and randomized property nodes that reflect real config structure.
Text•2 inputsClick to open →
Generador de Configuraciones YAML Simuladas
Genera archivos de configuración YAML realistas para apps, servicios y entornos
A mock YAML config generator is the fastest way to spin up realistic configuration files without hand-writing every key from scratch. YAML is the de facto format for app configs, CI/CD pipelines, Kubernetes manifests, and Docker Compose — and getting the structure right matters before you ever touch production.
Text•2 inputsClick to open →
Generador de consultas Elasticsearch de ejemplo
Genera JSON de query DSL de Elasticsearch de ejemplo para pruebas y aprendizaje
A mock Elasticsearch query generator produces example query DSL in JSON for testing, learning, and documentation. Elasticsearch queries are written as nested JSON with their own structure — bool queries, must and filter clauses, ranges, and sorts — and a realistic sample is the fastest way to learn the DSL or test a parser.
Text•0 inputsClick to open →
Generador de consultas GraphQL de ejemplo
Genera consultas y mutaciones GraphQL realistas para pruebas y prototipado
A mock GraphQL query generator saves you from handwriting boilerplate operations every time you need a test fixture or prototype scaffold. This tool produces realistic queries and mutations for common entities — Users, Products, Orders, Posts — with typed variables, nested field selections, and correct syntax throughout.
List•2 inputsClick to open →
Generador de consultas GraphQL falsas
Genera consultas y mutaciones GraphQL falsas y realistas para pruebas y documentación
A fake GraphQL query generator removes the tedious work of hand-authoring syntactically correct operations when you need them for testing, mocking, or documentation. Type any resource name — "User", "Order", "Product" — choose query, mutation, subscription, or all three, and set how many fields to include per type.
Text•3 inputsClick to open →
Generador de Consultas Postgres de Prueba
Genera consultas SQL SELECT de ejemplo con joins y filtros para pruebas
A mock Postgres query generator produces example SQL SELECT queries with joins, filters, and aggregates for learning and testing. Reading real queries is one of the fastest ways to learn SQL, and a realistic sample is useful for testing a query tool or seeding documentation.
Text•0 inputsClick to open →
Generador de cookies de navegador falsas
Genera cookies HTTP de navegador falsas realistas para pruebas y desarrollo
A fake browser cookie generator gives developers syntactically valid HTTP cookie strings in seconds, without constructing each attribute by hand. Real cookies need more than a name and value — expiry timestamps must follow RFC 1123, domains and paths must be plausible, and security flags like HttpOnly, Secure, and SameSite must be present or absent depending on your scenario.
List•2 inputsClick to open →
Generador de Correos de Empresa Falsos
Genera direcciones de correo de empresa falsas y realistas para pruebas y desarrollo
A fake company email generator gives developers and QA engineers a fast way to produce realistic-looking addresses without touching real inboxes or exposing user data. Each address follows corporate naming conventions — think john.harris@veridiangroup.com — so test data looks authentic in staging environments, automated test suites, and demo CRMs.
List•2 inputsClick to open →
Generador de correos electrónicos falsos
Genera direcciones de correo electrónico falsas con aspecto realista para pruebas y desarrollo
A fake email generator gives developers and QA engineers realistic test addresses in seconds, no manual invention required. Seed a registration form, populate a staging database, or build out an API fixture file without touching real user data or risking collisions with live accounts.
List•2 inputsClick to open →
Generador de Credenciales Basic Auth
Genera credenciales de HTTP Basic Auth con la cabecera Authorization en base64 correspondiente
A Basic Auth credentials generator produces a username and password pair along with the matching HTTP Basic Authentication header. HTTP Basic Auth encodes "username:password" in base64 and sends it in the Authorization header — a simple scheme still widely used for internal tools, APIs, and testing.
Text•0 inputsClick to open →
Generador de Cuerpos de Respuesta HTTP Simulados
Genera cuerpos de respuesta JSON HTTP falsos y realistas para patrones de API comunes
A mock HTTP response body generator saves you from hand-writing JSON fixtures every time you stub a REST endpoint. Pick one of five response patterns — success with data, paginated list, error response, created resource, or auth token — set a resource name, and get a copy-ready JSON body in seconds.
Text•2 inputsClick to open →
Generador de datos CSV simulados
Genera datos CSV simulados realistas con cabeceras y filas para pruebas y desarrollo
A mock CSV data generator gives developers structured, realistic comma-separated test data without touching a live database or hand-crafting rows. Pick a dataset type — user profiles, products, or transactions — set the row count, and get clean, header-correct CSV output in seconds.
Text•2 inputsClick to open →
Generador de Datos de Dispositivo Móvil Falsos
Genera metadatos de dispositivo móvil falsos y realistas, incluidos modelo, OS, tamaño de pantalla y specs
A fake mobile device info generator solves a real problem for developers who need diverse, realistic device metadata without capturing data from actual users. Each generated profile includes brand, model, operating system version, screen resolution, RAM, storage, and a synthetic device identifier — the same fields you'd find in a crash report or analytics payload.
List•2 inputsClick to open →
Generador de Datos de Flujo OAuth2 Simulados
Genera códigos de autorización, tokens y cargas de flujo OAuth2 realistas para pruebas
A mock OAuth2 flow data generator saves developers from hand-crafting token payloads that are missing fields or using wrong property names. This tool produces complete, spec-compliant samples for all four major grant types: authorization code, client credentials, refresh token, and implicit.
List•2 inputsClick to open →
Generador de datos de formulario simulados
Genera valores de campo de formulario falsos realistas, incluyendo nombres, correos, teléfonos y direcciones
A mock form data generator cuts out the tedious work of hand-crafting fake user records during development and QA. Each generated entry includes a full name, email address, phone number, and street address — realistic enough to trigger real validation logic, not just pass through it.
List•2 inputsClick to open →
Generador de datos de usuario simulados
Genera perfiles de usuario falsos completos como objetos JSON para pruebas de API y de base de datos
The mock user data generator creates complete fake user profiles for developers who need realistic test data without touching production systems. Each profile includes a UUIDv4, full name, email, age, role, and ISO 8601 timestamp — output as JSON or CSV depending on your workflow.
Text•2 inputsClick to open →
Generador de datos JSON de prueba
Genera objetos JSON de prueba estructurados para pruebas de API y prototipos
A mock JSON data generator is the fastest way to get realistic, structured test data before your backend exists. Front-end developers, QA engineers, and API designers use it to stay unblocked — no hand-crafting fake records, no waiting on endpoints.
Text•2 inputsClick to open →
Generador de datos XML falsos
Genera estructuras de datos XML falsas realistas para pruebas y desarrollo
A fake XML data generator saves developers from hand-writing repetitive XML records every time a test needs a realistic payload. Set a root tag, an item tag, and a record count, and the tool produces a complete, well-formed document in seconds.
Text•3 inputsClick to open →
Generador de despliegue de feature flags de ejemplo
Genera configuraciones de despliegue de feature flags de ejemplo en JSON
A mock feature flag rollout generator produces example feature-flag configurations as JSON for testing and learning. Feature flags let teams turn features on and off and roll them out gradually without redeploying, and a flag config captures the rollout rules — percentages, targeting, and variations.
Text•0 inputsClick to open →
Generador de direcciones de correo falsas
Genera direcciones de correo electrónico falsas con aspecto realista para pruebas y desarrollo
A fake email address generator is the fastest way to get realistic, structurally valid addresses for testing without touching real user data. Developers use it to seed databases, populate fixture files, and fill UI prototypes with believable account data in seconds.
List•2 inputsClick to open →
Generador de direcciones de prueba
Genera direcciones postales falsas realistas para pruebas y datos simulados
A dummy address generator saves developers from hand-crafting fake postal addresses every time they need test data. Paste-ready addresses for the US, UK, Canada, and Australia are produced in one click, each following that country's real formatting conventions — five-digit ZIP codes, alphanumeric Canadian postal codes, UK outcodes, and Australian state abbreviations with four-digit postcodes.
List•2 inputsClick to open →
Generador de Direcciones IP Falsas
Genera direcciones IPv4 e IPv6 falsas aleatorias para pruebas
A fake IP address generator produces random IPv4 and IPv6 addresses for testing, sample data, and documentation. When you build or test code that parses, validates, logs, or geolocates IP addresses, you need realistic but meaningless addresses rather than exposing real ones.
List•2 inputsClick to open →
Generador de Docker Compose simulado
Genera archivos docker-compose.yml realistas para configuraciones de stack de desarrollo comunes
A mock Docker Compose generator saves you from rewriting the same boilerplate every project: service definitions, named volumes, health checks, and dependency ordering. Pick your database — Postgres, MySQL, MongoDB, or none — toggle Redis caching, and set your app port.
Text•3 inputsClick to open →
Generador de Dockerfiles simulados
Genera un Dockerfile de ejemplo para contenerizar una aplicación
A mock Dockerfile generator produces an example Dockerfile for containerizing an application. A Dockerfile is a recipe for building a container image, with a clear sequence of instructions, and a realistic sample is the fastest way to learn the syntax or scaffold a build.
Text•1 inputClick to open →
Generador de dominios y URL falsos
Genera nombres de dominio y URL completas falsos pero realistas para pruebas y contenido de relleno
A fake domain and URL generator helps developers produce realistic web addresses without pointing to live sites. Hardcoding example.com everywhere gives you flat, unconvincing test data that misses edge cases — varied TLDs, subdomain patterns, and path depths all behave differently in parsers and formatters.
List•3 inputsClick to open →
Generador de EditorConfig simulado
Genera un archivo .editorconfig de ejemplo para estandarizar los estilos de código
A mock EditorConfig generator produces an example .editorconfig file to keep coding styles consistent across a team. EditorConfig is a simple, widely supported standard that lets a project define basic style rules — indentation, line endings, charset, whitespace — that every editor enforces automatically.
Text•1 inputClick to open →
Generador de endpoints REST de prueba
Genera definiciones de endpoints de API REST de prueba con métodos, rutas y respuestas
A mock REST endpoint generator lets you scaffold full CRUD route definitions without writing a single line of boilerplate. Type in any resource name — products, orders, invoices, users — set a count, and get back a complete set of RESTful paths with HTTP methods and status codes.
Text•3 inputsClick to open →
Generador de Enlaces de Paginación Simulados
Genera enlaces de paginación REST simulados (first, prev, next, last) para pruebas de API
A mock pagination link generator produces the first, previous, next, and last links that REST APIs return to help clients page through results. When you build or test pagination — a results list, an infinite scroll, or a client that follows link relations — you need a realistic set of paging URLs to work against.
Text•1 inputClick to open →
Generador de entradas de changelog de prueba
Genera entradas falsas y realistas de CHANGELOG en formato Keep a Changelog para pruebas y demos
A dummy changelog entry generator gives developers realistic CHANGELOG.md files in seconds, without writing placeholder text by hand. Built on the Keep a Changelog convention, it produces multi-version entries organized into Added, Fixed, Changed, and Deprecated sections — exactly what changelog parsers, documentation pipelines, and release tooling expect, with proper semantic versioning throughout.
Text•2 inputsClick to open →
Generador de entradas de log falsas
Genera líneas de log realistas de aplicación y servidor para probar analizadores de logs y paneles
A fake log entry generator solves a real problem: you need diverse, realistic log data to test parsers, dashboards, and alerting rules, but you can't use production logs. This tool produces authentic-looking lines in four formats — Apache/Nginx Combined Log Format, structured JSON, Linux syslog (RFC 3164), and Python logging — so your toolchain sees data that matches what it will process in production.
List•2 inputsClick to open →
Generador de entradas de registro falsas
Genera líneas de registro de aplicación realistas para probar parsers de logs y paneles
A fake log entry generator solves a concrete problem: you need realistic log data before production traffic arrives. This tool outputs authentic log lines in four formats — Apache/Nginx combined, structured JSON, Syslog RFC 3164, and plain application text — each with valid timestamps, IP addresses, HTTP methods, status codes, and message bodies.
List•3 inputsClick to open →
Generador de envoltorios SOAP de prueba
Genera envoltorios XML SOAP de ejemplo para probar servicios web heredados
A mock SOAP envelope generator produces example SOAP XML messages for testing and learning legacy web services. SOAP has a strict envelope structure — a header and a body wrapped in namespaced XML — and a realistic sample is the fastest way to test a parser, build a mock service, or understand the format.
Text•0 inputsClick to open →
Generador de Errores GraphQL Simulados
Genera cargas de respuesta de error GraphQL realistas para probar el manejo de errores
A mock GraphQL error generator helps frontend and backend developers build robust error handling without waiting for real server failures. GraphQL errors follow a specific structure — with message, locations, path, and extensions fields — and testing your UI against every error type is critical before shipping.
Text•2 inputsClick to open →
Generador de especificaciones OpenAPI de ejemplo
Genera un documento YAML de especificación OpenAPI 3.0 mínimo pero válido para un recurso dado
A mock OpenAPI spec generator removes the tedium of hand-writing YAML boilerplate every time you add a REST resource. Type a resource name like "orders" or "invoices", set your API title and version, and the tool outputs a complete OpenAPI 3.0 document — CRUD paths, request/response schemas, component definitions, and JWT bearer security included.
Text•3 inputsClick to open →
Generador de esquemas de base de datos de prueba
Genera esquemas de tablas SQL falsos y realistas con campos, tipos y restricciones para prototipos
A mock database schema generator saves hours of boilerplate when you need a solid CREATE TABLE statement fast. Paste the output straight into psql, MySQL Workbench, or a Flyway migration file and start iterating immediately.
Text•3 inputsClick to open →
Generador de esquemas de tabla Postgres de prueba
Genera sentencias CREATE TABLE de PostgreSQL de ejemplo para pruebas
A mock Postgres table schema generator produces example PostgreSQL CREATE TABLE statements for testing, learning, and documentation. SQL schema has a precise syntax — column names, types, constraints, defaults, and references — and a realistic sample is the fastest way to learn it or seed a test database.
Text•0 inputsClick to open →
Generador de esquemas GraphQL simulados
Genera esquemas GraphQL simulados realistas con tipos, consultas y mutaciones
A mock GraphQL schema generator solves the blank-page problem when you need valid SDL before your backend exists. Enter an entity name — "Product", "Invoice", "BlogPost" — set a field count, and the tool produces a complete schema: a typed object, CreateInput and UpdateInput types, single-item and list queries, plus create, update, and delete mutations wired into the root.
Text•2 inputsClick to open →
Generador de Eventos de Stripe Simulados
Genera cargas de eventos webhook falsas al estilo de Stripe como JSON para pruebas
A mock Stripe event generator produces fake webhook event payloads in Stripe's format for testing your integration. When you build code that receives and handles Stripe webhooks, you need realistic event objects without triggering real payments.
Text•0 inputsClick to open →
Generador de eventos de webhook falsos
Genera payloads de eventos de webhook simulados realistas para probar integraciones
A fake webhook event generator solves a real bottleneck in integration development: you can't always wait for live events to fire. Triggering a real payment.completed or subscription.cancelled just to test your handler is slow, flaky, and sometimes impossible offline.
List•2 inputsClick to open →
Generador de firmas de webhook de ejemplo
Genera cabeceras de webhook firmadas de ejemplo para probar la verificación de firmas
A mock webhook signature generator produces example signed webhook headers for testing signature verification. Many services sign their webhooks so you can confirm a request genuinely came from them and was not tampered with, using a timestamp and an HMAC signature.
Text•0 inputsClick to open →
Generador de Fragmentos de Esquema GraphQL Simulados
Genera definiciones de tipos GraphQL de ejemplo para pruebas y prototipos
A mock GraphQL schema snippet generator produces example type definitions for testing, prototyping, and learning GraphQL. When you are building a resolver, mocking an API, or teaching schema design, you need realistic type definitions without writing them from scratch each time.
Text•0 inputsClick to open →
Generador de Fragmentos HTML de Prueba
Genera fragmentos de código HTML realistas para pruebas, demos y contenido de relleno
A dummy HTML snippet generator lets developers quickly scaffold realistic UI components without writing boilerplate from scratch. Need a card grid for a Tailwind prototype, a data table for a Django admin mockup, or a hero section to show a client before copywriting is done?
Text•2 inputsClick to open →
Generador de hashes falsos
Genera cadenas de hash falsas realistas en formatos MD5, SHA-1, SHA-256 y bcrypt
A fake hash generator is a practical shortcut for developers who need correctly formatted hash strings without running real cryptographic functions. Seeding a database, mocking an API response, or writing documentation all require hash-shaped values that match production formats exactly — but spinning up a full auth stack just to get a placeholder is overkill.
List•2 inputsClick to open →
Generador de Huellas de Navegador Falsas
Genera objetos de datos de huella de navegador simulados y realistas para pruebas y QA
A fake browser fingerprint generator gives QA engineers and developers synthetic fingerprint objects without touching real user data. Browser fingerprints combine dozens of attributes — screen resolution, user agent, timezone, canvas hash, WebGL renderer, CPU cores, and more — into a profile that fraud engines, anti-bot layers, and analytics pipelines all rely on.
Text•1 inputClick to open →
Generador de IDs de dispositivo simulados
Genera identificadores de dispositivo falsos y direcciones tipo MAC para pruebas
A mock device ID generator produces fake hardware identifiers — MAC-style addresses, device tokens, and serial numbers — for testing and sample data. Code that registers, tracks, or displays devices needs realistic identifiers without using real hardware values, which can be sensitive.
List•2 inputsClick to open →
Generador de IDs de Recursos en la Nube Simulados
Genera identificadores de recursos falsos de AWS, GCP y Azure para pruebas y demos
A mock cloud resource ID generator creates realistic AWS ARNs, GCP resource paths, and Azure resource IDs for testing, documentation, and tool development. Cloud identifiers follow strict provider-specific conventions — account IDs, project slugs, subscription GUIDs — and hand-crafting them wastes time.
List•2 inputsClick to open →
Generador de IDs de Transacción Falsos
Genera IDs de transacción y pago falsos realistas para probar flujos de pago
A fake transaction ID generator produces realistic payment and transaction identifiers for testing checkout flows, receipts, and payment integrations. Real payment systems like Stripe issue IDs in formats such as txn_ or pi_ followed by a long random string, and your test data should mirror that shape so your UI, logs, and database behave realistically.
List•1 inputClick to open →
Generador de Información de Paquetes TCP/IP Falsos
Genera metadatos de paquetes TCP/IP simulados para pruebas de red y formación
A fake TCP/IP packet generator is invaluable for network programming education, firewall rule testing, and populating mock packet capture logs. Understanding real packet metadata — source and destination IPs, ports, protocol flags, TTL, and sequence numbers — is essential for any developer working on networked applications.
List•2 inputsClick to open →
Generador de ISBN Falsos
Genera números ISBN-13 falsos con formato válido para pruebas y datos de relleno
A fake ISBN generator produces valid-format ISBN-13 numbers for testing, mockups, and placeholder data. When you are building a bookstore, library, or catalog app, you need ISBNs that look real and pass format validation — including the correct check digit — without referencing actual books.
List•1 inputClick to open →
Generador de Jenkinsfile de prueba
Genera un pipeline declarativo de Jenkins de ejemplo para CI/CD
A mock Jenkinsfile generator produces an example declarative Jenkins pipeline for learning, testing, and documentation. A Jenkinsfile defines a CI/CD pipeline as code, with a clear structure of stages and steps, and a realistic sample is the fastest way to learn the syntax or scaffold a pipeline.
Text•0 inputsClick to open →
Generador de JWK Falsos
Genera un objeto JSON Web Key falso para probar código de JWT y manejo de claves
A fake JWK generator produces a JSON Web Key object in valid structure for testing JWT verification, JWKS endpoints, and key-handling code. A JWK describes a cryptographic key as JSON, and when you build auth code that fetches and parses keys, you need a realistically-shaped JWK without standing up a real key infrastructure.
Text•1 inputClick to open →
Generador de JWT de Prueba
Genera JSON Web Tokens falsos con aspecto realista para probar el manejo de tokens
A dummy JWT generator produces realistic-looking JSON Web Tokens — three dot-separated, base64url-style segments — that are perfect for testing token handling without exposing a real secret or a valid signature. Use them to check that your code splits a token into header, payload, and signature, stores it correctly, sends it in an Authorization header, or rejects it during signature verification.
Text•1 inputClick to open →
Generador de Líneas de Syslog Simuladas
Genera líneas de registro de ejemplo en formato syslog para probar canalizaciones de registro
A mock syslog line generator produces example log lines in the classic syslog format for testing log pipelines and parsers. Syslog has a recognisable shape — a timestamp, a hostname, a process name with a PID, and a message — and code or tools that ingest logs need realistic lines to test against.
List•1 inputClick to open →
Generador de listas de endpoints de API REST simulada
Genera una lista completa de endpoints de API RESTful con métodos, rutas y descripciones para un recurso dado
A mock REST API endpoint list generator removes the busywork of designing resource routes from scratch. Enter a resource name like "orders" or "invoices", pick your API version (v1–v3 or none), and the tool outputs every standard route: list, create, retrieve, update, patch, delete, bulk, search, export, and aggregate stats.
Text•3 inputsClick to open →
Generador de Logs de Error Simulados
Genera líneas de log de error de aplicación realistas para probar parsers de logs y herramientas de monitorización
A mock error log generator removes the need to tap production systems every time you need sample data for a parser, pipeline, or monitoring dashboard. Each output line includes an ISO 8601 timestamp, bracketed log level, service name, a traceId key-value pair, and a human-readable message — the same structure emitted by Node.js, Java, or Python apps writing to stdout.
List•2 inputsClick to open →
Generador de Makefile de prueba
Genera un Makefile de ejemplo con objetivos comunes de build y ejecución
A mock Makefile generator produces an example Makefile with common targets for building, testing, and running a project. Make is a venerable build tool, and a Makefile gives a project a simple, memorable command interface — make build, make test — regardless of the underlying stack.
Text•0 inputsClick to open →
Generador de Manifiestos de Kubernetes de Prueba
Genera manifiestos YAML de Kubernetes simulados para Deployments, Services y ConfigMaps
The dummy Kubernetes manifest generator produces valid YAML for Deployments, Services, ConfigMaps, or all three at once — no hand-editing indentation or hunting down selector typos. Set your app name, choose the resource kind, and pick a replica count to get a complete manifest with label selectors, resource limits, and environment variable placeholders already wired together correctly.
Text•3 inputsClick to open →
Generador de Manifiestos de Kubernetes de Prueba
Genera manifiestos YAML de Kubernetes de ejemplo para aprender y probar
A mock Kubernetes manifest generator produces example Deployment YAML for learning, testing, and documentation. Kubernetes manifests have a precise structure — apiVersion, kind, metadata, and a nested spec — and writing one from scratch each time is tedious when you just need a realistic sample.
Text•0 inputsClick to open →
Generador de mensajes de commit de Git de prueba
Genera mensajes de commit de Git falsos y realistas para pruebas, demos y simulación de historiales
A dummy git commit message generator saves time when you need a convincing commit history for demos, tutorials, or test repositories. Instead of hand-crafting dozens of fake log entries, generate realistic messages in seconds — formatted as conventional commits, casual one-liners, or verbose multi-line descriptions.
Text•3 inputsClick to open →
Generador de mensajes de commit falsos
Genera mensajes realistas de conventional commits para repos de prueba y demos
A fake commit message generator produces realistic conventional-commit messages for seeding test repositories, demos, and screenshots. When you need a git history that looks real — for a tutorial, a tool demo, or test fixtures — random lorem text looks wrong; commit messages have a distinct shape.
List•1 inputClick to open →
Generador de mensajes de error
Genera códigos y mensajes de error HTTP realistas para pruebas y mocks
An error message generator produces realistic HTTP status codes paired with clear, human-readable messages, ready to drop into tests, mocks, and documentation. Choose how many you want and it returns a shuffled selection from the common codes — 400, 401, 403, 404, 409, 422, 429, 500, 502, 503 — each with a concise explanation of what it means.
List•1 inputClick to open →
Generador de mensajes de error simulados
Genera trazas de pila y mensajes de error realistas para probar la interfaz de gestión de errores
A mock error message generator produces realistic error messages for testing, mockups, and documentation — the kind of messages an application shows when something goes wrong. Error states are easy to forget when you are building the happy path, yet they are where good design and robust handling really show.
Text•2 inputsClick to open →
Generador de mensajes Kafka simulados
Genera mensajes de Apache Kafka falsos realistas con cabeceras, clave y payload JSON
A mock Kafka message generator removes the friction of writing consumer tests without a live broker. This tool produces complete Kafka record objects — topic name, partition, offset, UUID key, typed headers, and a JSON payload — across five real event domains: user.created, order.placed, payment.processed, inventory.updated, and session.started.
List•3 inputsClick to open →
Generador de Mensajes Proto gRPC Simulados
Genera definiciones de mensajes Protocol Buffer falsas y realistas con representaciones JSON de ejemplo
A mock gRPC proto message generator saves hours of boilerplate work when you need a valid .proto file fast. Enter your service name, pick a pattern — CRUD, Auth, Payment, or Notification — and get a complete protobuf3 definition with correctly numbered fields, scalar types, and a fully declared service block.
Text•2 inputsClick to open →
Generador de Mensajes RabbitMQ de Prueba
Genera cargas útiles falsas de cola de mensajes con metadatos de enrutamiento para pruebas
A mock RabbitMQ message generator produces fake message-queue payloads with routing metadata for testing and learning. Message queues move data between services asynchronously, and a message carries not just a payload but routing information — an exchange, a routing key, and properties like a message id and delivery mode.
Text•0 inputsClick to open →
Generador de Mensajes WebSocket de Prueba
Genera cargas útiles JSON falsas y realistas de mensajes WebSocket para probar apps en tiempo real
A mock WebSocket message generator lets you produce realistic JSON payloads without hand-writing a single fixture. Choose from five event domains — chat, trading, notifications, IoT, or gaming — set a message count, and get a ready-to-use batch in seconds.
List•2 inputsClick to open →
Generador de Metadatos de Paginación Simulados
Genera bloques de metadatos de paginación de API realistas para pruebas de frontend y backend
The mock pagination metadata generator produces realistic API pagination blocks in JSON, HTTP Link header, and envelope formats — ready to drop into test fixtures, mock servers, or API docs without touching a real backend. Pagination edge cases are notoriously easy to miss: the first page with no previous link, a last page where items don't fill the full page size, or a single-page result where pagination controls should vanish entirely.
List•2 inputsClick to open →
Generador de Métricas de Prometheus Simuladas
Genera métricas de ejemplo en formato Prometheus para pruebas y paneles
A mock Prometheus metric generator produces example metrics in the Prometheus exposition format for testing and dashboards. Prometheus scrapes plain-text metrics with a specific shape — HELP and TYPE comments followed by named samples with labels — and a realistic sample is the fastest way to test a scraper, a dashboard, or an alert rule.
Text•0 inputsClick to open →
Generador de Migraciones de Base de Datos Simuladas
Genera scripts SQL de migración up/down de prueba para cambios de esquema y pruebas
A mock database migration generator produces example SQL migration scripts for learning, prototyping, and documentation. Migrations are the versioned changes that evolve a database schema over time — creating tables, adding columns, building indexes — and writing them from scratch while you are learning, or to illustrate a concept, is fiddly.
Text•3 inputsClick to open →
Generador de Mutaciones GraphQL Simuladas
Genera cadenas de mutaciones GraphQL falsas y realistas para probar APIs y clientes GraphQL
A mock GraphQL mutation generator saves hours of manual string construction when you need realistic mutation documents for testing, prototyping, or teaching. Instead of hand-writing boilerplate for create, update, delete, and auth operations, you get copy-ready mutation strings that match real-world patterns across common resource types like users, posts, and products.
Text•2 inputsClick to open →
Generador de nombres de bucket S3 de prueba
Genera nombres válidos y realistas de bucket de almacenamiento de objetos para pruebas
A mock S3 bucket name generator produces valid, realistic object-storage bucket names for testing, documentation, and sample infrastructure. Bucket names have strict rules — lowercase letters, numbers, and hyphens, and they must be globally unique — and code or docs that reference buckets need plausible names without claiming a real one.
List•1 inputClick to open →
Generador de nombres de datos de prueba aleatorios
Genera nombres, nombres de usuario y nombres para mostrar falsos realistas para pruebas automatizadas y datos simulados
A random test data name generator removes the tedium of inventing fake user records by hand. Instead of repeating 'John Doe' across your test suite, generate a fresh batch of full names, usernames, display names, or email addresses in one click and paste them straight into fixtures, seed scripts, or factory functions.
List•2 inputsClick to open →
Generador de nombres de feature flags simulados
Genera nombres de feature flags convencionales para probar sistemas de flags y configuraciones
A mock feature flag name generator produces conventional feature-flag names for testing flag systems, config files, and dashboards. Feature flags follow a recognisable naming convention — a verb plus the feature, like enable_new_checkout — and when you are testing a flagging system such as LaunchDarkly or your own config, you need realistic flag names rather than placeholders.
List•1 inputClick to open →
Generador de Nombres de Usuario de Linux de Prueba
Genera nombres de usuario realistas al estilo Linux para pruebas de sistema, servidor y DevOps
A dummy Linux username generator solves a small but stubborn problem: test environments filled with user1, testuser, or foo rarely surface real bugs. This tool produces usernames that match Linux's NAME_REGEX spec — lowercase letters, digits, dots, and hyphens, 32 characters max — so your provisioning scripts, authentication flows, and user management APIs get inputs that look like production data.
List•2 inputsClick to open →
Generador de números de teléfono ficticios
Genera números de teléfono falsos pero con formato realista para pruebas
A dummy phone number generator saves you from typing placeholder digits by hand every time you need realistic-looking numbers for dev work, QA, or UI design. Every number uses the 555 prefix — reserved by the North American Numbering Plan for fictional use — so nothing generated here will ever match a real subscriber's line.
List•2 inputsClick to open →
Generador de package.json de prueba
Genera un manifiesto package.json de ejemplo para un proyecto Node
A mock package.json generator produces an example Node project manifest for learning, testing, and documentation. The package.json file is the heart of a Node project, declaring its name, version, scripts, and dependencies, and a realistic sample is the fastest way to see how the pieces fit.
Text•0 inputsClick to open →
Generador de Paquetes de Red Falsos
Genera metadatos falsos de paquetes de red para educación y pruebas de redes
A fake network packet generator lets you create realistic mock packet metadata without capturing live traffic or exposing sensitive infrastructure. Each packet includes source and destination IPs, port numbers, protocol flags, TTL values, and payload sizes that match what you'd see in Wireshark or tcpdump.
List•2 inputsClick to open →
Generador de Pares Clave-Valor de Redis Simulados
Genera comandos Redis SET/GET realistas con claves y valores falsos para pruebas
The mock Redis key-value generator creates ready-to-run Redis SET commands with namespaced keys, realistic values, and EX expiry flags — no hand-writing seed data required. Set your key namespace (default: "app") and entry count, and you get commands like SET app:session:7f3a1b "..." EX 3600 that match real-world naming patterns.
List•2 inputsClick to open →
Generador de Pares de Claves SSH de Prueba
Genera cadenas de clave pública SSH falsas con aspecto realista para pruebas y documentación
The dummy SSH key pair generator creates realistic-looking fake SSH public keys in ED25519, RSA, and ECDSA formats for documentation, test fixtures, and infrastructure code. Placeholder strings like INSERT_KEY_HERE break format validation in Terraform, Ansible, and Kubernetes manifests.
List•3 inputsClick to open →
Generador de Payloads de Webhook
Genera payloads JSON realistas de webhook para construir y probar manejadores de webhooks
A webhook payload generator produces realistic JSON event payloads for building and testing webhook handlers. Webhooks notify your application when something happens in another system — a payment succeeds, a user signs up, an order ships — by POSTing a JSON event to your endpoint.
Text•1 inputClick to open →
Generador de payloads de webhook simulados
Genera payloads de webhook simulados realistas para servicios comunes como GitHub, Stripe y Slack
A mock webhook payload generator gives you realistic JSON on demand — no waiting for a real GitHub push, Stripe charge, or Slack event to fire. Paste the output straight into curl, Postman, or a Jest fixture and your handler runs against properly structured data immediately.
List•2 inputsClick to open →
Generador de payloads JSON simulados
Genera payloads JSON anidados aleatorios para probar API y simular webhooks
The mock JSON payload generator produces realistic, nested test data for API development, webhook simulation, and integration testing — no live backend needed. Pick from five payload types: user events, orders, sensor readings, error responses, and notifications.
Text•2 inputsClick to open →
Generador de payloads JWT falsos
Genera payloads JWT simulados realistas con claims comunes para pruebas y desarrollo
A fake JWT payload generator gives developers realistic mock JSON Web Tokens without spinning up an auth server. Building authentication middleware, writing integration tests, or wiring a React app to a protected API all require tokens that look real — correct structure, plausible claims, proper Base64URL encoding — with zero security risk.
List•2 inputsClick to open →
Generador de payloads XML falsos
Genera payloads XML falsos realistas para pruebas y desarrollo de API
A fake XML payload generator saves developers from hand-crafting repetitive, error-prone XML fixtures every time they need test data. Set the root element name to match your actual API contract — 'customers', 'orders', 'employees' — and choose how many records to produce.
Text•2 inputsClick to open →
Generador de perfiles de usuario simulados
Genera perfiles de usuario falsos completos con nombre, correo, teléfono, profesión y más
A mock user profile generator gives developers realistic fake personas without touching production data or calling an external API. Each profile includes a full name, email, phone number, age, job title, company, and city — enough to populate a real feature without placeholders that break layout or logic.
List•2 inputsClick to open →
Generador de Planes de Precios SaaS Simulados
Genera datos de planes de precios SaaS falsos en formato JSON para prototipado de UI y pruebas
A mock SaaS pricing plan generator creates realistic pricing tier data in JSON format, so you can build and test pricing pages without waiting on a backend. Frontend developers, UI designers, and QA engineers all hit the same wall: you need plausible plan names, prices, feature lists, and a highlighted popular tier before any real data exists.
Text•2 inputsClick to open →
Generador de Recursos de Terraform Simulados
Genera bloques de recursos de Terraform de ejemplo para aprendizaje y pruebas
A mock Terraform resource generator produces example resource blocks in HCL for learning, testing, and documentation. Terraform describes infrastructure as code, and its resource blocks have a clear structure — a type, a name, and a set of arguments — that is easiest to learn from realistic samples.
Text•0 inputsClick to open →
Generador de referencia de códigos de estado HTTP
Genera un código de estado HTTP aleatorio con su nombre y significado correctos
An HTTP status code reference generator returns a random status code together with its correct name and a clear explanation of what it means. There are dozens of status codes, and while everyone knows 404, plenty of others — 422, 502, 304 — get confused or misused, leading to APIs that report the wrong thing.
Text•1 inputClick to open →
Generador de registros de base de datos simulados
Genera registros de base de datos simulados listos para SQL con valores de campo realistas para varios tipos de tabla
A mock database record generator saves the tedium of hand-writing fake rows every time you spin up a new feature or test suite. Pick one of four table types — users, products, orders, or blog posts — set a count up to 30, and get schema-appropriate records instantly.
List•2 inputsClick to open →
Generador de Registros de Compilación CI de Prueba
Genera registros de compilación CI/CD falsos y realistas para pruebas, demos y documentación
A dummy CI build log generator creates authentic-looking continuous integration logs without running a real pipeline. Developers and DevOps engineers often need realistic build logs for testing log parsers, building CI dashboards, or creating tutorial content.
Text•2 inputsClick to open →
Generador de registros DNS de prueba
Genera registros DNS de ejemplo con tipos y valores coherentes para pruebas
A mock DNS record generator produces example DNS records — A, AAAA, CNAME, MX, and TXT — with types and values that correctly match. DNS records map domain names to addresses and services, and each record type has a specific value format: an A record points to an IPv4 address, an MX record names a mail server with a priority, a TXT record holds a quoted string.
List•1 inputClick to open →
Generador de Repositorios de GitHub Falsos
Genera metadatos simulados realistas de repositorios de GitHub para demos y pruebas
A fake GitHub repository generator creates realistic mock repo metadata for populating developer portfolio demos, testing GitHub API integrations, and building dashboard prototypes. Every generated repo includes a name, primary language, star and fork counts, open issues, license, topics, creation date, and a plausible GitHub URL — exactly the fields you'd see in a real API response.
List•2 inputsClick to open →
Generador de Resolvers GraphQL Simulados
Genera funciones resolver GraphQL simuladas con firmas de tipo realistas y valores de retorno
A graphql resolver mock generator removes the blank-file bottleneck that stalls every new API project. Before your schema is finalized, you need runnable resolver functions — something that accepts root, args, context, and info and returns a believable shape.
List•2 inputsClick to open →
Generador de respuestas de API de prueba
Genera respuestas JSON de API falsas y realistas con campos configurables para desarrollo frontend
A mock API response generator lets frontend developers move fast without waiting on backend endpoints. Choose from five resource types — user, product, order, post, or transaction — set your item count, and get back structured JSON with plausible field values that render correctly in real UI components.
Text•3 inputsClick to open →
Generador de respuestas de paginación simuladas
Genera respuestas JSON de API paginadas realistas con metadatos para pruebas de frontend y backend
A mock pagination response generator gives frontend and backend developers a complete, realistic JSON payload without waiting for a live API. Paste the output directly into MSW handlers, Jest fixtures, or Postman collections and start building list views, data tables, and infinite scroll components immediately.
Text•3 inputsClick to open →
Generador de Respuestas de Token OAuth Simuladas
Genera una respuesta de token OAuth 2.0 falsa realista como JSON para pruebas
A mock OAuth token response generator produces a realistic but fake OAuth 2.0 token payload as formatted JSON. When you build code that requests, stores, or refreshes access tokens, you need a sample response with the right fields — access_token, token_type, expires_in, refresh_token, and scope — without calling a real authorization server.
Text•0 inputsClick to open →
Generador de Respuestas GraphQL Simuladas
Genera respuestas JSON GraphQL falsas y realistas para pruebas de frontend y API
A mock GraphQL response generator produces realistic GraphQL JSON responses for frontend development, testing, and documentation. GraphQL returns data shaped exactly to the query, nested under a top-level data key, and building a frontend against that shape before the real API exists means you need believable response payloads.
Text•2 inputsClick to open →
Generador de respuestas HTTP simuladas con código de estado
Genera respuestas HTTP simuladas con códigos de estado, cabeceras y cuerpos JSON para pruebas de API
A mock HTTP status response generator gives developers and QA engineers ready-made HTTP responses — complete with status lines, headers, and JSON bodies — without spinning up a live server. Building frontend error states, testing retry logic, or documenting an API shouldn't depend on real network conditions.
List•2 inputsClick to open →
Generador de Respuestas Simuladas de Límite de Tasa
Genera cabeceras de respuesta de límite de tasa HTTP y cuerpos JSON realistas para pruebas de API
A mock rate limit response generator helps API client developers reproduce HTTP 429 behavior without touching a live endpoint. Paste the output directly into Nock, MSW, or WireMock to simulate the exact throttling conditions your retry logic needs to handle.
List•2 inputsClick to open →
Generador de robots.txt de Prueba
Genera archivos robots.txt de ejemplo para guiar a los rastreadores de los motores de búsqueda
A mock robots.txt generator produces example robots.txt files for learning, testing, and documentation. The robots.txt file tells search engine crawlers which parts of a site they may and may not visit, using a simple but specific syntax of user-agent, disallow, and allow rules.
Text•0 inputsClick to open →
Generador de Salida de Terminal de Prueba
Genera salida de terminal/CLI falsa pero realista para demos, capturas de pantalla y documentación
A mock terminal output generator lets you create convincing CLI screenshots without touching a live environment. Tutorials, landing pages, and conference slides all need realistic terminal output — but running actual commands takes setup time and can leak sensitive paths or hostnames.
Text•2 inputsClick to open →
Generador de Server-Sent Events de prueba
Genera flujos de ejemplo de Server-Sent Events (SSE) para pruebas
A mock Server-Sent Event generator produces example SSE streams for testing real-time features. Server-Sent Events are a simple way for a server to push updates to a browser over a single long-lived connection, and the wire format is specific — id, event, and data fields separated by blank lines.
Text•1 inputClick to open →
Generador de Shortcodes de Emoji Aleatorios
Genera shortcodes de emoji aleatorios para probar chats, markdown y selectores de emoji
A random emoji shortcode generator produces emoji shortcodes — the :colon-wrapped: names used in Slack, GitHub, Discord, and markdown — for testing chat input, emoji pickers, and message rendering. When you build or test a feature that parses and renders shortcodes, you need a quick supply of valid codes like :rocket: and :white_check_mark: to throw at your parser.
List•1 inputClick to open →
Generador de sitemap XML de ejemplo
Genera sitemaps XML de ejemplo para motores de búsqueda
A mock sitemap XML generator produces example XML sitemaps for learning, testing, and documentation. A sitemap lists a site's pages to help search engines discover and crawl them, using a specific XML format of url entries with a location, change frequency, and priority.
Text•0 inputsClick to open →
Generador de Solicitudes HTTP de Prueba
Genera solicitudes HTTP sin procesar de ejemplo para probar y aprender
A mock HTTP request generator produces example raw HTTP requests for testing, learning, and documentation. Beneath every API call is a plain-text HTTP request — a method and path, headers, and an optional body — and seeing the raw format is the best way to understand how the web works.
Text•0 inputsClick to open →
Generador de Stack Traces de Prueba
Genera stack traces falsos y realistas para varios lenguajes para probar interfaces de error
A dummy stack trace generator lets developers test error tracking UIs, logging dashboards, and alerting systems without triggering real application crashes. Stack traces follow strict language-specific formats that differ significantly between JavaScript, Python, Java, Go, and Ruby — and a mismatch breaks your parser before you write a single real bug.
Text•2 inputsClick to open →
Generador de tablas Markdown de relleno
Genera una tabla Markdown rellena para documentación y pruebas
A dummy Markdown table generator produces a filled, correctly formatted Markdown table for documentation, READMEs, and testing. Markdown tables are fiddly to write by hand — the pipes and the divider row have to line up — and you often just need a realistic sample to test a renderer or fill a doc.
Text•1 inputClick to open →
Generador de tarjetas de crédito falsas
Genera números de tarjeta de crédito falsos pero estructuralmente válidos para probar formularios de pago
A fake credit card generator creates structurally valid card numbers that pass the Luhn algorithm check without being tied to any real bank account. Developers and QA engineers use these to test payment forms, e-commerce checkouts, and billing APIs in sandbox environments where real card data must never appear.
List•2 inputsClick to open →
Generador de tokens JWT
Genera tokens JWT falsos y realistas para pruebas y desarrollo
A JWT token generator gives developers a ready-made JSON Web Token in seconds, no auth server required. Paste it into an Authorization header, drop it into a Postman environment variable, or feed it straight to middleware under test.
Text•3 inputsClick to open →
Generador de tokens JWT simulados
Genera tokens web JSON falsos pero con estructura realista para pruebas
A mock JWT token generator produces realistically structured but completely fake JSON Web Tokens for testing. A JWT has three dot-separated parts — a base64url header, a payload, and a signature — and when you are building or testing code that parses, routes, or displays tokens, you need samples that look real without standing up an auth server.
Text•0 inputsClick to open →
Generador de tokens OAuth falsos
Genera tokens de acceso, tokens de actualización y respuestas de token OAuth 2.0 completas falsas para pruebas de API
A fake OAuth token generator lets developers test authentication flows without exposing real credentials in code, docs, or team wikis. When debugging OAuth 2.0 integrations, you need structurally correct tokens without spinning up a live authorization server.
List•2 inputsClick to open →
Generador de tokens seguros falsos
Genera tokens aleatorios de alta entropía para claves de API, secretos y pruebas
A fake secure token generator produces random, high-entropy strings for use as placeholder API keys, secrets, and tokens in testing and documentation. When you build code that stores, validates, or displays secrets, you need realistic-looking tokens without using real ones, which should never appear in tests or docs.
List•2 inputsClick to open →
Generador de Trazas de Error Falsas
Genera trazas de error falsas y realistas para probar sistemas de manejo de errores y registro
A fake error stack trace generator gives you realistic, runtime-accurate traces on demand — no crashing real apps, no waiting for a bug to reproduce. Wire up a new logging pipeline, stress-test a Sentry integration, or populate a monitoring dashboard with authentic-looking data in seconds.
Text•2 inputsClick to open →
Generador de Trazas OpenTelemetry de Prueba
Genera spans de trazado distribuido y cargas de traza simulados en formato OpenTelemetry
The dummy OpenTelemetry trace generator produces realistic mock spans you can feed directly into observability pipelines, collector configs, or demo dashboards — no live instrumented service required. Each span includes a trace ID, span ID, parent-child relationships, timestamps, durations, HTTP status codes, and attributes for database, cache, queue, and HTTP operations.
List•2 inputsClick to open →
Generador de User-Agent aleatorios
Genera cadenas User-Agent aleatorias realistas para navegadores, bots y dispositivos móviles
A random user agent generator saves time whenever you need realistic UA strings for testing, scraping pipelines, or parser validation. Every browser request includes a User-Agent header identifying the client — browser name, engine, OS, and device type.
List•2 inputsClick to open →
Generador de UUID v4
Genera UUIDs aleatorios versión 4 según RFC 4122 para pruebas y desarrollo
A UUID v4 generator produces random, RFC 4122-compliant version 4 universally unique identifiers — the 36-character strings developers use as primary keys, request IDs, and identifiers that must never collide. Version 4 UUIDs are built almost entirely from random bits, with the version and variant fields set correctly, so the odds of two ever clashing are vanishingly small.
List•1 inputClick to open →
Generador de Variables GraphQL de Prueba
Genera objetos JSON de variables GraphQL simuladas para probar queries y mutations
A dummy GraphQL variables generator saves you from hand-crafting JSON payloads every time you need to test a mutation or query. Pick one of five operations — createUser, updateUser, deleteItem, getProduct, or createOrder — set how many objects you need, and get realistic variable JSON instantly.
List•2 inputsClick to open →
Generador de Versiones Semver Aleatorias
Genera números de versión semántica válidos para probar herramientas de publicación y changelogs
A random semver version generator produces valid semantic version numbers — the MAJOR.MINOR.PATCH format that npm, Cargo, and most package managers expect. It is built for developers who need realistic version strings to test release scripts, changelog tooling, version-comparison logic, or sort order without hand-typing dozens of plausible numbers.
List•2 inputsClick to open →
Realistic Error Message Generator
Generates realistic error messages across common languages and systems
A realistic error message generator gives you authentic-looking errors from common languages, runtimes, and systems, ready for tests, mockups, and documentation. Choose how many you want and it returns a shuffled set — a JavaScript TypeError, a refused Postgres connection, a Java NullPointerException, a CORS failure, an out-of-disk ENOSPC.
List•1 inputClick to open →
Semantic Version Generator
Generates valid semantic version numbers including pre-release and build tags
A semantic version generator gives you valid SemVer strings, including pre-release and build metadata, so you can fill in examples without second-guessing the format. Choose how many you want and it returns a shuffled set — clean releases like 2.3.1, pre-releases like 1.4.0-beta.2 and 3.0.0-rc.1, and versions with build metadata like 1.2.3+build.456.
List•1 inputClick to open →