Fun Data Bridge API — free mock REST API for testing

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.

Example request and response

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"
  ]
}

Open and run this endpoint

What you can practise here

generate

schemas and fixtures

All 39 mock REST APIs

Last updated