example-data.com

matchmaking

matchmaking

Browse 500 matchmaking records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

curl -sS \
  "https://example-data.com/api/v1/matchmaking?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = await res.json();
import type { Matchmaking, ListEnvelope } from "https://example-data.com/types/matchmaking.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "userId": 170,
      "candidateUserId": 28,
      "matchScorePercent": 65,
      "commonInterests": [
        "Dancing"
      ],
      "status": "pending",
      "createdAt": "2025-08-29T11:17:19.015Z"
    },
    {
      "id": 2,
      "userId": 242,
      "candidateUserId": 36,
      "matchScorePercent": 4,
      "commonInterests": [
        "Outdoors",
        "Languages",
        "Live shows"
      ],
      "status": "liked",
      "createdAt": "2025-12-26T11:56:04.189Z"
    },
    {
      "id": 3,
      "userId": 206,
      "candidateUserId": 29,
      "matchScorePercent": 25,
      "commonInterests": [
        "Cycling",
        "Foodie",
        "Gaming"
      ],
      "status": "pending",
      "createdAt": "2025-06-10T02:07:43.403Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 500,
    "totalPages": 20
  },
  "links": {
    "self": "/api/v1/matchmaking?page=1",
    "first": "/api/v1/matchmaking?page=1",
    "last": "/api/v1/matchmaking?page=20",
    "next": "/api/v1/matchmaking?page=2",
    "prev": null
  }
}

View full response →

Draftbit