For Agents
Generate synthetic JSON test data from a schema specification, either one document at a time or in batches. Useful for seeding test environments and demo fixtures.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the FakeJSON API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with FakeJSON API API.
Generate a single fake JSON document from a schema specification
Generate a batch of fake JSON documents in one request
Seed a staging or demo environment with synthetic records
Produce structured fixtures for UI prototypes without real user data
GET STARTED
Use for: I need to generate fake JSON data for a test fixture, Create synthetic test data from a schema, Generate a batch of fake user records for staging, Get a sample JSON document matching this schema
Not supported: Does not validate schemas, store generated data, or anonymise real production data — use for synthetic JSON generation from a schema only.
FakeJSON generates synthetic JSON test data on demand from a schema-style request body. The two endpoints handle a single-document request at /q and a batched request at /q/batch, both authenticated by an API token included in the request body. It is a small but focused tool for filling staging environments, demoing UIs, and running load tests without touching real production data.
Simulate API responses for offline development and testing
Patterns agents use FakeJSON API API for, with concrete tasks.
★ Staging Environment Seeding
A QA engineer needs to populate a staging database with realistic-looking but synthetic records before running a smoke test. The agent calls /q/batch with a schema describing user, order, or product objects and writes the response into the staging store. The whole seeding run is one API call regardless of batch size.
POST a batch schema describing 100 user records with name, email, and address fields to /q/batch and write the returned array to the staging users table.
UI Prototype Fixtures
A frontend developer building a prototype needs realistic JSON to render lists and cards before the backend exists. The agent calls /q with a schema matching the UI's expected shape and the response feeds the component as a static fixture. Removes the need to hand-write JSON or scrape sample data from production.
POST a single-document schema describing a product card to /q and write the returned JSON to a fixtures file the prototype reads on load.
AI Agent Test Data Helper
An AI agent helping a developer scaffold a new project uses Jentic to generate fixture data without leaving the chat session. Jentic exposes the /q and /q/batch operations with their schema parameters, and the agent picks the correct endpoint based on the requested record count. Useful in scaffolding and onboarding flows.
Call jentic.search with 'generate fake JSON data', load the /q/batch operation, execute it with the developer's schema and a record count of 50, and return the JSON array.
2 endpoints — fakejson generates synthetic json test data on demand from a schema-style request body.
METHOD
PATH
DESCRIPTION
/q
Generate a single fake JSON document from a schema
/q/batch
Generate a batch of fake JSON documents from a schema
/q
Generate a single fake JSON document from a schema
/q/batch
Generate a batch of fake JSON documents from a schema
Three things that make agents converge on Jentic-routed access.
Credential isolation
The FakeJSON token, which lives inside the request body rather than a header, is held in the Jentic vault and merged into outgoing payloads at execution time. The agent never sees the token field value.
Intent-based discovery
Agents search Jentic for 'generate fake JSON data' and Jentic returns the /q and /q/batch operations with their schema parameters, so the agent picks single or batch based on the requested record count.
Time to first call
Direct integration: an hour to wire a single-call generator. Through Jentic: under 10 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Mailchimp
Real production data sink that consumes test records during integration testing
Use FakeJSON to generate the contacts payload, then send it to Mailchimp's sandbox audience to verify end-to-end behaviour.
Shopify
Production e-commerce API where fake-product fixtures are useful in dev stores
Use FakeJSON to generate product fixtures for a Shopify development store before wiring real catalog data.
Segment
Event ingestion API often loaded with synthetic events during integration testing
Use FakeJSON to generate event payloads and forward them to Segment for end-to-end pipeline validation without using production traffic.
Specific to using FakeJSON API API through Jentic.
What authentication does the FakeJSON API use?
FakeJSON uses an apiKey passed inside the request body as the token field on the JSON payload. Through Jentic the token is stored encrypted in the vault and injected into outgoing /q and /q/batch request bodies so the agent never sees the raw value.
Can I generate a batch of fake records with the FakeJSON API?
Yes. POST a schema specification along with the desired record count to /q/batch. The endpoint returns the array of generated documents in a single response and is the right choice when you need more than one record.
What are the rate limits for the FakeJSON API?
Rate limits are not declared in the spec. Plans on FakeJSON's pricing page are credit-based per generated record rather than per-second quotas — the token's plan determines monthly throughput.
How do I generate fake JSON through Jentic?
Run pip install jentic, call jentic.search with 'generate fake JSON data', load the /q operation for a single document or /q/batch for many, and execute with your schema. The token is replayed from the vault on each call.
Does FakeJSON return realistic field values?
Yes. The schema fields accept type tokens like 'firstName', 'email', and 'address' that produce plausible synthetic values, which is the main reason to use it over hand-written JSON fixtures.
Is the FakeJSON API free?
FakeJSON offers a limited free tier and paid plans for higher record volumes. The original fakejson.com domain has been redirected and the active host is app.fakejson.com — check current plan terms before relying on it for production-scale fixture generation.