example-data.com

matchmaking

matchmaking

Page 4 of 10.

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": 73,
      "userId": 72,
      "candidateUserId": 165,
      "matchScorePercent": 89,
      "commonInterests": [
        "Languages",
        "Foodie",
        "Gaming",
        "Yoga"
      ],
      "status": "pending",
      "createdAt": "2026-03-07T05:09:03.682Z"
    },
    {
      "id": 74,
      "userId": 116,
      "candidateUserId": 54,
      "matchScorePercent": 55,
      "commonInterests": [
        "Foodie",
        "Fitness",
        "Movies"
      ],
      "status": "passed",
      "createdAt": "2026-01-07T11:55:17.274Z"
    },
    {
      "id": 75,
      "userId": 65,
      "candidateUserId": 62,
      "matchScorePercent": 93,
      "commonInterests": [
        "Reading",
        "Cycling"
      ],
      "status": "pending",
      "createdAt": "2025-10-16T13:59:54.251Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=4",
    "next": "/api/v1/matchmaking?page=5",
    "prev": "/api/v1/matchmaking?page=3"
  }
}
Draftbit