Generate small deterministic JSON fixtures using fundata-style schemas, then reuse them in API tests.
The Fun Data Bridge generates seeded fixtures from a schema you supply — the same idea as the sibling site fundata.dev, exposed as an API. Given the same seed it returns the same data, which is what makes it usable as a fixture source for tests that must be deterministic rather than merely realistic.
Base URL: https://funapi.dev/api/data/v1 · 4 endpoints · OpenAPI 3.1 spec and Postman collection available. New here? Read the getting started guide.
GET https://funapi.dev/api/data/v1/types — List supported field types. No token, no signup:
curl -i https://funapi.dev/api/data/v1/types
answers 200 OK with:
{
"data": [
"row",
"integer",
"boolean",
"email",
"uuid",
"name",
"date",
"string"
]
}
schemas and fixtures
GET /data/v1/types — List supported field types · Responds with 200 Link to this endpointPOST /data/v1/generate — Generate deterministic JSON rows · Responds with 200 422 Link to this endpointPOST /data/v1/jobs — Queue a large fixture job (requires Bearer auth) · Responds with 202 422 Link to this endpointGET /data/v1/jobs/{id} — Poll fixture job · Responds with 200 404 Link to this endpointLast updated