example-data.com
Menu

Dating app

Swipe deck with user profiles, match scoring, and messaging. Ready-to-prototype data for users, matchmaking, and conversations.

How to use this data

Use users for profiles, matchmaking for candidate scores and match status, and messages for a conversation view. Matchmaking records reference both the user and candidate user by ID.

Click into any collection to see its schema, sample records, and API reference.

Try it now

Fetch users in the language of your choice.

curl example

curl -sS \
  "https://example-data.com/api/v1/users?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/users?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/users.d.ts https://example-data.com/types/users.d.ts
import type { User, ListEnvelope } from "./types/users";

const res = await fetch(
  "https://example-data.com/api/v1/users?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<User>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/users",
    params={"limit": 25},
)
data = res.json()

Looking for a visual way to build a web or mobile app? You can use this data with Draftbit.