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
Basic-Auth-Zugangsdaten-Generator
Erstellt HTTP-Basic-Auth-Zugangsdaten mit dem passenden Base64-Authorization-Header
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 →
cURL-Befehl-Builder
Erstellt einen ausführbaren curl-Befehl aus Methode, URL und Headern
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 →
cURL-Befehl-Generator
Erstellt beispielhafte curl-Befehle für jede HTTP-Methode zur Verwendung in Dokumentation, Tests und beim Lernen
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 →
Dummy-Bearer-Token-Generator
Erstellt realistisch aussehende Dummy-Bearer-Token für API-Tests und Mock-Auth
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 →
Dummy-Git-Commit-Nachrichten-Generator
Erzeugt realistische gefälschte Git-Commit-Nachrichten für Tests, Demos und das Nachstellen von Verläufen
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 →
Dummy-JWT-Generator
Erstellt realistisch aussehende, aber gefälschte JSON Web Tokens zum Testen der Token-Verarbeitung
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 →
Dummy-Konfigurationsdatei-Generator
Erzeugt realistische Dummy-Konfigurationsdateien in den Formaten JSON, YAML und TOML für App-Tests
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 →
Dummy-Linux-Benutzernamen-Generator
Erzeugt realistische Benutzernamen im Linux-Stil für System-, Server- und DevOps-Tests
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 →
Fake-Firmen-E-Mail-Generator
Erzeugt realistische fiktive Firmen-E-Mail-Adressen zum Testen und Entwickeln
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 →
Fake-IP-Adressen-Generator
Erstellt zufällige fiktive IPv4- und IPv6-Adressen für Tests
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 →
Fake-ISBN-Generator
Erstellt fiktive ISBN-13-Nummern im gültigen Format für Tests und Platzhalterdaten
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 →
Fake-JWK-Generator
Erstellt ein fiktives JSON-Web-Key-Objekt zum Testen von JWT- und Schlüssel-Code
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 →
Fake-Lizenzschlüssel-Generator
Erstellt fiktive Software-Lizenzschlüssel in gängigen Formaten zum Testen von Aktivierungsabläufen
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 →
Fake-Netzwerkpaket-Generator
Erzeugt fiktive Netzwerkpaket-Metadaten für Netzwerk-Schulungen und Tests
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 →
Fake-Transaktions-ID-Generator
Erstellt realistische fiktive Transaktions- und Zahlungs-IDs zum Testen von Zahlungsabläufen
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 →
Generator für API-Testfälle
Erstellt eine Checkliste von Testfällen für einen API-Endpunkt
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 →
Generator für DNS-Einträge zum Testen
Erstellt Beispiel-DNS-Einträge mit passenden Typen und Werten zum Testen
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 →
Generator für Dummy-Adressen
Erstellt realistische Fake-Postanschriften für Tests und Mock-Daten
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 →
Generator für Dummy-Benutzerbios
Erstellt kurze Platzhalter-Benutzerbios für Profil-Mockups und Testdaten
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 →
Generator für Dummy-Changelog-Einträge
Erstellt realistische Fake-CHANGELOG-Einträge im Keep-a-Changelog-Format für Tests und 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 →
Generator für Dummy-CI-Build-Logs
Erstellt realistische fiktive CI/CD-Build-Logs für Tests, Demos und Dokumentation
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 →
Generator für Dummy-CIDR-Blöcke
Erstellt zufällige IP-Adressblöcke in CIDR-Notation für Netzwerkkonfigurationstests
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 →
Generator für Dummy-cURL-Befehle
Erstellt realistische cURL-Befehle für REST-API-Tests und -Dokumentation
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 →
Generator für Dummy-GraphQL-Variablen
Erstellt Mock-GraphQL-Variablen als JSON-Objekte für Query- und Mutation-Tests
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 →
Generator für Dummy-HTML-Snippets
Erstellt realistische HTML-Code-Snippets für Tests, Demos und Platzhalterinhalte
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 →
Generator für Dummy-JSON-Arrays
Erstellt Arrays aus Fake-JSON-Objekten mit konfigurierbaren Feldern für API-Mocking und Tests
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 →
Generator für Dummy-Kubernetes-Manifeste
Erstellt fiktive Kubernetes-YAML-Manifeste für Deployments, Services und 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 →
Generator für Dummy-Markdown-Tabellen
Erstellt eine gefüllte Markdown-Tabelle für Dokumentation und Tests
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 →
Generator für Dummy-OpenTelemetry-Traces
Erstellt fiktive Distributed-Tracing-Spans und Trace-Payloads im OpenTelemetry-Format
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 →
Generator für Dummy-SSH-Schlüsselpaare
Erstellt realistisch wirkende Fake-SSH-Public-Key-Strings für Tests und Dokumentation
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 →
Generator für Dummy-Stacktraces
Erstellt realistische fiktive Stacktraces für mehrere Sprachen, um Fehler-UIs zu testen
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 →
Generator für Dummy-Telefonnummern
Erstellt fiktive, aber realistisch formatierte Telefonnummern zum Testen
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 →
Generator für Dummy-Testfälle
Erstellt Boilerplate-Unit-Tests in gängigen Test-Frameworks für schnelleres TDD-Setup
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 →
Generator für Dummy-YAML-Konfigurationen
Erstellt eine realistische Dummy-YAML-Konfigurationsdatei zum Testen
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 →
Generator für Fake-API-Keys
Erstellt realistisch wirkende Fake-API-Keys in gängigen Formaten für Tests und Dokumentation
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 →
Generator für Fake-Browser-Cookies
Erstellt realistische Fake-HTTP-Browser-Cookies zum Testen und Entwickeln
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 →
Generator für Fake-Browser-Fingerprints
Erstellt realistische Mock-Browser-Fingerprint-Datenobjekte für Tests und 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 →
Generator für Fake-Commit-Nachrichten
Erstellt realistische Conventional-Commit-Nachrichten für Test-Repos und 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 →
Generator für Fake-E-Mail-Adressen
Erstellt realistisch aussehende Fake-E-Mail-Adressen für Tests und Entwicklung
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 →
Generator für Fake-E-Mail-Adressen
Erstellt realistisch aussehende Fake-E-Mail-Adressen für Tests und Entwicklung
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 →
Generator für Fake-GitHub-Repositorys
Erstellt realistische fiktive GitHub-Repository-Metadaten für Demos und Tests
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 →
Generator für Fake-GraphQL-Abfragen
Erstellt realistische Fake-GraphQL-Abfragen und -Mutationen für Tests und Dokumentation
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 →
Generator für Fake-JWT-Payloads
Erstellt realistische Mock-JWT-Payloads mit gängigen Claims für Tests und Entwicklung
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 →
Generator für Fake-Log-Einträge
Erstellt realistische Anwendungs- und Server-Log-Zeilen zum Testen von Log-Parsern und Dashboards
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 →
Generator für Fake-Logeinträge
Erstellt realistische Anwendungs-Logzeilen zum Testen von Log-Parsern und Dashboards
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 →
Generator für Fake-Mobilgerätedaten
Erstellt realistische Fake-Metadaten von Mobilgeräten mit Modell, OS, Bildschirmgröße und 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 →
Generator für Fake-OAuth-Tokens
Erstellt Fake-OAuth-2.0-Access-Tokens, Refresh-Tokens und vollständige Token-Antworten für API-Tests
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 →
Generator für Fake-TCP/IP-Paketinfos
Erstellt fiktive TCP/IP-Paket-Metadaten für Netzwerktests und Lehre
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 →
Generator für Fake-Webhook-Events
Erstellt realistische Mock-Webhook-Event-Payloads zum Testen von Integrationen
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 →
Generator für Fake-XML-Daten
Erstellt realistische Fake-XML-Datenstrukturen zum Testen und Entwickeln
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 →
Generator für Fake-XML-Payloads
Erstellt realistische Fake-XML-Payloads für API-Tests und Entwicklung
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 →
Generator für Fehlermeldungen
Erstellt realistische HTTP-Fehlercodes und -meldungen für Tests und 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 →
Generator für fiktive Domains & URLs
Erstellt realistische fiktive Domainnamen und vollständige URLs zum Testen und für Platzhalterinhalte
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 →
Generator für fiktive Hashes
Erstellt realistische fiktive Hash-Strings in den Formaten MD5, SHA-1, SHA-256 und 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 →
Generator für fiktive Kreditkartennummern
Erstellt fiktive, aber strukturell gültige Kreditkartennummern zum Testen von Zahlungsformularen
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 →
Generator für gefälschte Error-Stack-Traces
Erstellt realistische gefälschte Error-Stack-Traces zum Testen von Fehlerbehandlung und Logging-Systemen
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 →
Generator für gefälschte sichere Tokens
Erstellt zufällige Tokens mit hoher Entropie für API-Keys, Secrets und Tests
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 →
Generator für HTTP-Statuscode-Referenz
Erstellt einen zufälligen HTTP-Statuscode mit korrektem Namen und Bedeutung
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 →
Generator für Jenkinsfile zum Testen
Erstellt eine deklarative Jenkins-Pipeline als Beispiel für 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 →
Generator für Lizenz-Header zum Testen
Erstellt Lizenz-Header-Kommentare für Quelldateien in gängigen Formaten
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 →
Generator für Makefile zum Testen
Erstellt ein Beispiel-Makefile mit gängigen Build- und Run-Targets
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 →
Generator für Mock-.env-Dateien
Erstellt eine fiktive Datei mit Umgebungsvariablen zum Testen und für Dokumentation
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 →
Generator für Mock-AWS-ARNs
Erstellt realistische Fake-AWS-ARN-Strings für IAM-Policies, Tests und Dokumentation
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 →
Generator für Mock-Benutzerdaten
Erstellt vollständige Fake-Benutzerprofile als JSON-Objekte für API- und Datenbanktests
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 →
Generator für Mock-Benutzerprofile
Erstellt vollständige fiktive Benutzerprofile mit Name, E-Mail, Telefon, Beruf und mehr
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 →
Generator für Mock-CI-Pipeline-Konfigs
Erstellt eine beispielhafte CI-Pipeline-YAML-Konfig zum Testen und Lernen
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 →
Generator für Mock-CI/CD-Pipeline-Konfigurationen
Erstellt realistische Mock-CI/CD-Pipeline-Konfigurationsdateien für beliebte Plattformen
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 →
Generator für Mock-Cloud-Ressourcen-IDs
Erstellt fiktive AWS-, GCP- und Azure-Ressourcen-Identifikatoren für Tests und 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 →
Generator für Mock-Cookie-Header
Erstellt beispielhafte Set-Cookie-Header-Werte mit realistischen Attributen
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 →
Generator für Mock-CSP-Header
Erstellt beispielhafte Content-Security-Policy-Header für die Websicherheit
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 →
Generator für Mock-CSV-Daten
Erstellt realistische Mock-CSV-Daten mit Kopfzeilen und Zeilen zum Testen und Entwickeln
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 →
Generator für Mock-Datenbank-Migrationen
Erstellt fiktive SQL-Up/Down-Migrationsskripte für Schemaänderungen und Tests
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 →
Generator für Mock-Datenbankeinträge
Erstellt SQL-fertige Mock-Datenbankeinträge mit realistischen Feldwerten für verschiedene Tabellentypen
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 →
Generator für Mock-Datenbankverbindungsstrings
Erstellt fiktive Datenbankverbindungsstrings für gängige Datenbanken
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 →
Generator für Mock-Docker-Compose
Erstellt realistische docker-compose.yml-Dateien für gängige Entwicklungs-Stack-Konfigurationen
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 →
Generator für Mock-Dockerfiles
Erstellt ein Beispiel-Dockerfile zum Containerisieren einer Anwendung
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 →
Generator für Mock-EditorConfig
Erstellt eine beispielhafte .editorconfig-Datei zur Vereinheitlichung von Code-Stilen
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 →
Generator für Mock-Elasticsearch-Queries
Erstellt beispielhaftes Elasticsearch-Query-DSL-JSON zum Testen und Lernen
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 →
Generator für Mock-Event-Sourcing-Payloads
Erstellt realistische Domain-Event-Payloads für Event-Sourcing- und CQRS-Muster
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 →
Generator für Mock-Feature-Flag-Namen
Erstellt konventionelle Feature-Flag-Namen zum Testen von Flag-Systemen und Konfigurationen
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 →
Generator für Mock-Feature-Flag-Rollouts
Erstellt beispielhafte Feature-Flag-Rollout-Konfigurationen als 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 →
Generator für Mock-Fehlerlogs
Erstellt realistische Anwendungs-Fehlerlogzeilen zum Testen von Log-Parsern und Monitoring-Tools
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 →
Generator für Mock-Fehlermeldungen
Erstellt realistische Stack-Traces und Fehlermeldungen zum Testen von Fehlerbehandlungs-UIs
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 →
Generator für Mock-Formulardaten
Erstellt realistische Fake-Formularfeldwerte einschließlich Namen, E-Mails, Telefonnummern und Adressen
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 →
Generator für Mock-Geräte-IDs
Erstellt fiktive Gerätekennungen und MAC-ähnliche Adressen zum Testen
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 →
Generator für Mock-GraphQL-Fehler
Erstellt realistische GraphQL-Fehler-Response-Payloads zum Testen der Fehlerbehandlung
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 →
Generator für Mock-GraphQL-Queries
Erstellt realistische GraphQL-Queries und -Mutations zum Testen und Prototyping
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 →
Generator für Mock-GraphQL-Responses
Erstellt realistische Fake-GraphQL-JSON-Responses für Frontend- und API-Tests
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 →
Generator für Mock-GraphQL-Schemas
Erstellt realistische Mock-GraphQL-Schemas mit Typen, Queries und Mutations
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 →
Generator für Mock-gRPC-Proto-Messages
Erstellt realistische Fake-Protocol-Buffer-Message-Definitionen und beispielhafte JSON-Darstellungen
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 →
Generator für Mock-HTTP-Response-Bodies
Erstellt realistische Fake-HTTP-JSON-Response-Bodies für gängige API-Muster
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 →
Generator für Mock-HTTP-Statusantworten
Erstellt Mock-HTTP-Antworten mit Statuscodes, Headern und JSON-Bodies für API-Tests
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 →
Generator für Mock-JSON-Payloads
Erstellt zufällige verschachtelte JSON-Payloads für API-Tests und Webhook-Simulationen
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 →
Generator für Mock-JWT-Tokens
Erstellt realistisch strukturierte, aber gefälschte JSON Web Tokens für Tests
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 →
Generator für Mock-Kafka-Nachrichten
Erstellt realistische Fake-Apache-Kafka-Nachrichten mit Headern, Key und JSON-Payload
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 →
Generator für Mock-Netzwerkkonfigurationen
Erstellt fiktive, aber realistische Netzwerkkonfigurationsblöcke mit IPs, Subnetzen und Gateways
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 →
Generator für Mock-Nginx-Konfigurationen
Erstellt beispielhafte nginx-Server-Block-Konfigurationen zum Testen
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 →
Generator für Mock-OAuth2-Flow-Daten
Erstellt realistische OAuth2-Authorization-Codes, Tokens und Flow-Payloads zum Testen
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 →
Generator für Mock-OpenAPI-Specs
Erstellt ein minimales, aber gültiges OpenAPI-3.0-Spezifikations-YAML-Dokument für eine gegebene Ressource
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 →
Generator für Mock-Pagination-Metadaten
Erstellt realistische API-Pagination-Metadatenblöcke für Frontend- und Backend-Tests
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 →
Generator für Mock-Paginierungs-Antworten
Erstellt realistische paginierte API-JSON-Antworten mit Metadaten für Frontend- und Backend-Tests
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 →
Generator für Mock-Rate-Limit-Header
Erstellt beispielhafte API-Rate-Limit-Response-Header zum Testen
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 →
Generator für Mock-Rate-Limit-Responses
Erstellt realistische HTTP-Rate-Limiting-Response-Header und JSON-Bodys für API-Tests
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 →
Generator für Mock-Redis-Befehle
Erstellt Beispiel-Redis-Befehle zum Lernen und Testen
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 →
Generator für Mock-REST-API-Endpunktlisten
Erstellt eine vollständige Liste von RESTful-API-Endpunkten mit Methoden, Pfaden und Beschreibungen für eine gegebene Ressource
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 →
Generator für Mock-SaaS-Preispläne
Erstellt fiktive SaaS-Preisplan-Daten im JSON-Format für UI-Prototyping und Tests
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 →
Generator für Mock-Sitemap-XML
Erstellt beispielhafte XML-Sitemaps für Suchmaschinen
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 →
Generator für Mock-Webhook-Payloads
Erstellt realistische Mock-Webhook-Payloads für gängige Dienste wie GitHub, Stripe und 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 →
Generator für Mock-Webhook-Signaturen
Erstellt beispielhaft signierte Webhook-Header zum Testen der Signaturprüfung
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 →
Generator für Mock-XML-Konfigurationen
Erstellt realistische XML-Konfigurationsdateien für Tests und Entwicklung
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 →
Generator für Mock-YAML-Konfigurationen
Erstellt realistische YAML-Konfigurationsdateien für Apps, Services und Umgebungen
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 →
Generator für package.json zum Testen
Erstellt ein Beispiel-package.json-Manifest für ein Node-Projekt
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 →
Generator für Postgres-Tabellenschemata zum Testen
Erstellt Beispiel-PostgreSQL-CREATE-TABLE-Anweisungen zum Testen
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 →
Generator für S3-Bucket-Namen zum Testen
Erstellt gültige, realistische Objektspeicher-Bucket-Namen zum Testen
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 →
Generator für Server-Sent Events zum Testen
Erstellt Beispiel-Streams von Server-Sent Events (SSE) zum Testen
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 →
Generator für SOAP-Envelopes zum Testen
Erstellt Beispiel-SOAP-XML-Envelopes zum Testen alter Webservices
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 →
Generator für Unit-Test-Fälle
Erstellt ein Jest-Test-Grundgerüst mit Platzhalterfällen für eine Funktion
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 →
Generator für zufällige API-Keys
Erstellt zufällige API-Keys in gängigen Formaten für Entwicklung und Tests
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 →
Generator für zufällige HTTP-Statuscodes
Gibt einen zufälligen HTTP-Statuscode mit Name und Bedeutung zum Testen und Lernen zurück
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 →
Generator für zufällige Ports und Dienste
Erstellt zufällige Netzwerk-Portnummern mit zugehörigen Dienstnamen für Entwicklungs- und Test-Konfigurationen
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 →
Generator für zufällige Semver-Versionen
Erstellt gültige semantische Versionsnummern zum Testen von Release-Tooling und 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 →
Generator für zufällige Testdaten-Namen
Erstellt realistische Fake-Namen, Benutzernamen und Anzeigenamen für automatisierte Tests und Mock-Daten
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 →
Generator für zufällige User-Agents
Erstellt realistische zufällige User-Agent-Strings für Browser, Bots und Mobilgeräte
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 →
HTTP-Statuscode-Erklärer
Erklärt einen zufälligen HTTP-Statuscode ausführlich – Bedeutung, Einsatz und ein Beispiel
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 →
HTTP-Statuscode-Erklärer
Erklärt einen HTTP-Statuscode und wann er zu verwenden ist
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 →
JWT-Token-Generator
Erstellt realistische Fake-JWT-Tokens für Tests und Entwicklung
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 →
Mock-.gitignore-Generator
Erstellt eine beispielhafte .gitignore-Datei für gängige Projekttypen
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 →
Mock-API-Antwort-Generator
Erzeugt realistische gefälschte JSON-API-Antworten mit konfigurierbaren Feldern für die Frontend-Entwicklung
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 →
Mock-CLI-Befehl-Generator
Erstellt realistische gefälschte CLI-Befehle für Dokumentation, Tutorials und Shell-Skript-Tests
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 →
Mock-Datenbankschema-Generator
Erzeugt realistische gefälschte SQL-Tabellenschemata mit Feldern, Typen und Constraints für das Prototyping
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 →
Mock-Feature-Flag-Config-Generator
Erstellt realistische gefälschte Feature-Flag-Konfigurationsobjekte zum Testen von Feature-Toggle-Systemen
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 →
Mock-Generator für GraphQL-Resolver
Erstellt Mock-GraphQL-Resolver-Funktionen mit realistischen Typsignaturen und Rückgabewerten
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 →
Mock-GraphQL-Mutation-Generator
Erstellt realistische gefälschte GraphQL-Mutation-Strings zum Testen von GraphQL-APIs und -Clients
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 →
Mock-GraphQL-Schema-Snippet-Generator
Erstellt beispielhafte GraphQL-Typdefinitionen für Tests und Prototyping
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 →
Mock-HTTP-Header-Generator
Erzeugt realistische gefälschte HTTP-Anfrage-Header für API-Tests und Entwicklung
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 →
Mock-HTTP-Request-Generator
Erzeugt beispielhafte rohe HTTP-Requests zum Testen und Lernen
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 →
Mock-JSON-Daten-Generator
Erzeugt strukturierte Mock-JSON-Objekte für API-Tests und Prototyping
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 →
Mock-Kubernetes-Manifest-Generator
Erzeugt beispielhafte Kubernetes-YAML-Manifeste zum Lernen und Testen
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 →
Mock-OAuth-Token-Response-Generator
Erstellt eine realistische fiktive OAuth-2.0-Token-Response als JSON für Tests
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 →
Mock-Pagination-Link-Generator
Erstellt fiktive REST-Pagination-Links (first, prev, next, last) für API-Tests
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 →
Mock-Postgres-Query-Generator
Erzeugt beispielhafte SQL-SELECT-Abfragen mit Joins und Filtern zum Testen
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 →
Mock-Prometheus-Metrik-Generator
Erstellt beispielhafte Metriken im Prometheus-Format zum Testen und für Dashboards
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 →
Mock-RabbitMQ-Nachrichten-Generator
Erzeugt fiktive Message-Queue-Payloads mit Routing-Metadaten zum Testen
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 →
Mock-Redis-Key-Value-Generator
Erstellt realistische Redis-SET-/GET-Befehle mit gefälschten Keys und Werten zum Testen
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 →
Mock-REST-Endpunkt-Generator
Erzeugt Dummy-REST-API-Endpunktdefinitionen mit Methoden, Pfaden und Antworten
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 →
Mock-robots.txt-Generator
Erzeugt beispielhafte robots.txt-Dateien zur Steuerung von Suchmaschinen-Crawlern
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 →
Mock-Stripe-Event-Generator
Erstellt gefälschte Stripe-artige Webhook-Event-Payloads als JSON zum Testen
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 →
Mock-Syslog-Zeilen-Generator
Erstellt beispielhafte Log-Zeilen im Syslog-Format zum Testen von Log-Pipelines
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 →
Mock-Terminal-Ausgabe-Generator
Erzeugt fiktive, aber realistische Terminal-/CLI-Ausgaben für Demos, Screenshots und Dokumentation
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 →
Mock-Terraform-Resource-Generator
Erstellt beispielhafte Terraform-Resource-Blöcke zum Lernen und Testen
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 →
Mock-TOML-Config-Generator
Erstellt realistische gefälschte TOML-Konfigurationsdateien für App-Entwicklung und Tests
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 →
Mock-User-Agent-String-Generator
Erstellt realistische Browser-User-Agent-Strings für Tests und fiktive Anfragen
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 →
Mock-WebSocket-Nachrichten-Generator
Erzeugt realistische fiktive WebSocket-JSON-Nachrichten-Payloads zum Testen von Echtzeit-Apps
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 →
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 →
UUID-v4-Generator
Erstellt zufällige UUIDs nach RFC 4122 Version 4 für Tests und Entwicklung
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 →
Webhook-Payload-Generator
Erstellt realistische JSON-Webhook-Payloads zum Erstellen und Testen von Webhook-Handlern
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 →
Zufalls-API-Schlüssel-Generator
Erzeugt sicher aussehende zufällige API-Schlüssel in verschiedenen Formaten für Entwicklung und Tests
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 →
Zufalls-Emoji-Shortcode-Generator
Erstellt zufällige Emoji-Shortcodes zum Testen von Chats, Markdown und Emoji-Auswahlfeldern
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 →