Generated by AI. Governed by you.
Delivered into your systems.
DataMaker creates realistic, schema-valid test data and delivers it straight into your SAP systems, databases, and APIs. It runs inside your network, follows your rules, and logs every action. No more hand-crafted fixtures. No more stale staging data.
Works with the tools your team already uses
Pull real SAP records. Ready for regression.
Sometimes you don't need new data, you need real records that match the shape of a test case. Hand the agent a longer prompt with explicit filters and field mappings, and it queries your SAP system, returns a typed table, and saves the set for your regression portfolio. Fields marked sensitive are masked on the way out, so personal data never leaves the system unprotected.
Pull 25 existing SAP Business Partners from our S/4HANA sandbox for the regression suite. Filter and field mapping: • Country: DE (90%) · AT (10%) • BPCategory: 1 (Person) • Industry: HIGH_TECH or RETAIL • BPRole: FLCU01 (Customer) • CreatedOn: last 90 days Required fields: BP ID, Name, Country, Industry, TaxNumber1 (USt-ID), IBAN. Save the set as "reg_bp_de_2026q2".
$metadata · 47 fields discovered$filter from your mappings/A_BusinessPartner?$filter=…&$top=200reg_bp_de_2026q2| BP ID | Name | Cty | Industry | USt-ID | IBAN | Status |
|---|---|---|---|---|---|---|
| 1000147 | Lukas Huber | DE | HIGH_TECH | DE ••• ••• 449 | DE89 •••• •••• … | 200 OK |
| 1000148 | Sophia Weber | DE | RETAIL | DE ••• ••• 217 | DE21 •••• •••• … | 200 OK |
| 1000149 | Markus Bauer | DE | HIGH_TECH | DE ••• ••• 933 | DE17 •••• •••• … | 200 OK |
| 1000150 | Anna Schmidt | AT | HIGH_TECH | ATU ••• 1209 | AT48 •••• •••• … | 200 OK |
| 1000151 | Jonas Müller | DE | RETAIL | DE ••• ••• 826 | DE60 •••• •••• … | 200 OK |
| 1000152 | Lea Fischer | DE | HIGH_TECH | DE ••• ••• 580 | DE12 •••• •••• … | 200 OK |
Everything you need to generate quality test data.
DataMaker combines a no-code template builder, an AI chat agent, and a Python scenario engine, so every team member can contribute, regardless of skill level.
Chat to generate data instantly
Describe what you need in plain English. DataMaker's AI agent writes the schema, generates the data, and pushes it straight to your database or API endpoint, all from a single prompt.
- User prompt
- AI understands schema
- Data generated
- Exported / seeded
Realistic data for every field
Choose from over 50 built-in generators, names, emails, addresses, IBANs, credit cards, SSNs, IMEIs, products. Need something custom? Use AI, Python, or your own regex.
+ Custom types, AI-generated fields, and Python scripts
Build once, generate forever
Save your data schema as a reusable template. Share templates across your team, nest objects for complex JSON structures, and generate any number of records on demand, via the UI, API, or AI agent.
- Define template fields
- Save template
- Generate N records
- JSON · CSV · DB · API
Seed databases and APIs directly
Connect to PostgreSQL, MySQL, MongoDB, MSSQL, Oracle, IBM DB2. Or configure REST API endpoints with custom headers and auth, and push generated data straight in.
First-class SAP integration
DataMaker speaks SAP natively. Connect to any SAP OData V2 or V4 service, inspect entity fields from $metadata, apply OData filters, and POST generated records back, with automatic CSRF token handling.
- OData V2 & V4 (A2X)
- Auto-CSRF token handling
- Fetch, filter & inspect SAP data
- SAP-specific MCP tools
Automate complex data workflows
Write Python scenarios to orchestrate multi-step data generation: call APIs, run validations, chain templates, and seed multiple systems in one automated run. Stored, versioned, executable from UI or agent.
Plug DataMaker into any AI agent
DataMaker ships an MCP server with 25+ tools. Connect it to Claude, Copilot, Cursor, or any MCP-compatible agent so your AI coding assistant can generate and insert test data without leaving the editor.
Turn real data into templates automatically
Upload a JSON, CSV, YAML, or OpenAPI file, or point DataMaker at a live database, and let AI reverse-engineer a reusable template from your existing schema. No manual mapping required.
- Upload CSV / JSON / OpenAPI
- AI analyses column types
- Template auto-generated
- Generate N synthetic rows
Your data never has to leave your infrastructure
DataMaker deploys inside your own environment: self-hosted in your data center or private cloud, or as a desktop app on a tester's machine. Credentials, generated data, and the systems being filled all stay behind your firewall.
- Self-hosted deployment with Docker
- Desktop app with a fully local mode
- Credentials stored encrypted, used in-network
- No detour through someone else's cloud
AI you can let near your test systems
Templates and scenarios define which fields, value ranges, and systems the agent may touch, and an audit log records every action it takes. We do not just sell data generation. We sell its safe, controlled use inside your company.
- Guardrails: agent works within your templates
- Audit log for every generation and delivery
- Egress control: data goes only where allowed
- Reviewable like any other test asset
Anonymise sensitive data safely
Mask or replace PII fields in your templates. Mark fields as sensitive to prevent accidental export. DataMaker helps you stay GDPR-compliant while still working with realistic, production-shaped data.
- Mask PII & PHI fields
- GDPR-compliant generation
- Prevent accidental export
- Production-shaped synthetic data
From prompt to governed test data in three steps.
Describe
Type a prompt or upload your schema. Tell DataMaker what kind of data you need and how much.
Generate within rules
The agent knows your system: its fields, relationships, and real value ranges. It builds valid data and stays inside the guardrails your team defined. You see a live preview before anything moves.
Deliver and log
Data lands directly in your SAP test client, database, or API, and every step is logged. Export to JSON, CSV, XLS, or SQL whenever you prefer files instead.
"Lukas""lukas.huber@example.de""Müller GmbH""DE89 3704 0044 0532 0130 00"1485.20results: [
{
first_name: "Lukas",
email: "lukas.huber@…",
company: "Müller GmbH",
iban: "DE89 3704…",
balance: 1485.20
},
{
first_name: "Sophia",
email: "sophia.weber@…",
company: "Bauer AG",
iban: "DE21 5001…",
balance: 2104.55
}
]Build data schemas visually, preview instantly
The DataMaker template builder gives you a drag-and-drop field editor with live preview. Add nested objects, set distributions, apply custom Python logic per field, and see realistic sample data update in real time.
- 50+ built-in data types
- Nested JSON objects & arrays
- AI-generated fields
- Distribution controls (Gaussian, weighted random)
- Python script per-field generation
- Custom & reusable data types
1from datamaker import DataMaker2import requests34dm = DataMaker()5customers = dm.generate_from_id(6 template_id="cust_de", count=500)78for c in customers:9 requests.post(10 "https://staging.api/orders",11 json={"customer": c["id"]})1213print(f"✓ seeded {len(customers)} orders")
Automate multi-step data pipelines with Python
DataMaker's scenario engine lets you write Python scripts that orchestrate complex data flows, generate data, call APIs, seed databases, run assertions, and save them as reusable, shareable scenarios. Execute on demand or trigger via API.
- Full Python environment
- Access DataMaker API from within scripts
- Workspace file storage (upload CSVs, reference data)
- Real-time log streaming during execution
- AI agent can write and debug scenarios for you
API_BUSINESS_PARTNER_SRV
Purpose-built for SAP environments
Unlike generic data tools, DataMaker understands SAP OData services out of the box. Connect your SAP BTP or S/4HANA system, fetch entity metadata, apply OData filter queries, and POST generated test data back, including automatic CSRF token negotiation.
- OData V2 & V4 (A2X)
- Auto-CSRF token handling
- Fetch, filter, and inspect existing SAP data
- Export generated data to SAP entities
- SAP-specific MCP tools for agent-driven workflows
Seed SAP test data with a single agent prompt.
Here's how DataMaker's AI agent fills a SAP S/4HANA system with realistic Business Partners, Sales Orders, or any OData entity, end to end, hands-free.
- 01"Create 10 German Business Partners in SAP"
- 02Agent reads SAP OData $metadata
- 03Template auto-generated (name, address, IBAN…)
- 0410 realistic records generated
- 05CSRF token fetched automatically
- 0610 × HTTP POST → SAP OData endpoint
- 07Business Partners live in your SAP system
fetch-endpoint-fieldsReads $metadata from your SAP OData endpoint, discovers fields, types, and required flags automatically.
get_templates / create_template_from_jsonChecks for an existing SAP Business Partner template or auto-creates one mapping OData properties to DataMaker types.
generate_from_idGenerates 10 realistic, locale-aware Business Partner records using German names, postal codes, and IBANs.
save_scenarioWrites a Python scenario that loops through records and POSTs each one to the SAP OData endpoint with CSRF token handling.
execute_scenarioRuns the scenario in DataMaker's Python worker. Live logs stream back to the chat UI in real time.
Start with a pilot. Scale across your teams.
Enterprise
- Runs in your network: self-hosted or desktop fleet
- SAP integration with our enablement methodology
- Agent mode with guardrails and full audit log
- Scenario engine, unlimited templates and projects
- Dedicated support and onboarding by our team
From one prompt to seeded systems.
From a single chat prompt to a seeded SAP test client: the agent reads the service schema, builds the template, and posts valid records.
Pilot teams reach their first usable test data within days of installation, running entirely inside their own network.
AI coding assistants request governed test data through the MCP server without leaving the editor. Same guardrails, same audit log.
Frequently asked questions.
Ready to stop writing test data by hand?
Get realistic, governed test data into your systems, starting with a pilot on your own infrastructure.