example-data.com

matchmaking

matchmaking

Page 6 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": 121,
      "userId": 143,
      "candidateUserId": 211,
      "matchScorePercent": 72,
      "commonInterests": [
        "Hiking",
        "Volunteering",
        "Dancing",
        "Tech"
      ],
      "status": "matched",
      "createdAt": "2026-03-31T13:36:43.126Z"
    },
    {
      "id": 122,
      "userId": 35,
      "candidateUserId": 127,
      "matchScorePercent": 5,
      "commonInterests": [
        "Languages",
        "Dancing"
      ],
      "status": "pending",
      "createdAt": "2025-10-19T18:27:26.654Z"
    },
    {
      "id": 123,
      "userId": 144,
      "candidateUserId": 76,
      "matchScorePercent": 27,
      "commonInterests": [
        "Reading"
      ],
      "status": "pending",
      "createdAt": "2025-12-31T06:38:52.854Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=6",
    "next": "/api/v1/matchmaking?page=7",
    "prev": "/api/v1/matchmaking?page=5"
  }
}
Draftbit