matchmaking
matchmaking
Page 17 of 21.
Overview
-
Match #385
Score: 80% · liked
-
Match #386
Score: 86% · passed
-
Match #387
Score: 49% · pending
-
Match #388
Score: 21% · passed
-
Match #389
Score: 79% · pending
-
Match #390
Score: 47% · liked
-
Match #391
Score: 55% · liked
-
Match #392
Score: 85% · pending
-
Match #393
Score: 34% · passed
-
Match #394
Score: 50% · pending
-
Match #395
Score: 20% · passed
-
Match #396
Score: 5% · passed
-
Match #397
Score: 47% · liked
-
Match #398
Score: 58% · pending
-
Match #399
Score: 19% · pending
-
Match #400
Score: 70% · pending
-
Match #401
Score: 54% · passed
-
Match #402
Score: 57% · liked
-
Match #403
Score: 24% · passed
-
Match #404
Score: 75% · liked
-
Match #405
Score: 92% · pending
-
Match #406
Score: 93% · passed
-
Match #407
Score: 52% · pending
-
Match #408
Score: 84% · pending
Request
curl example
curl -sS \ "https://example-data.com/api/v1/matchmaking?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/matchmaking.d.ts https://example-data.com/types/matchmaking.d.ts
import type { Matchmaking, ListEnvelope } from "./types/matchmaking";
const res = await fetch(
"https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Matchmaking>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 385,
"userId": 12,
"candidateUserId": 203,
"matchScorePercent": 80,
"commonInterests": [
"Coffee",
"Cycling"
],
"status": "liked",
"createdAt": "2026-02-02T00:03:39.387Z"
},
{
"id": 386,
"userId": 241,
"candidateUserId": 12,
"matchScorePercent": 86,
"commonInterests": [
"Yoga"
],
"status": "passed",
"createdAt": "2025-11-16T06:15:34.139Z"
},
{
"id": 387,
"userId": 222,
"candidateUserId": 111,
"matchScorePercent": 49,
"commonInterests": [
"Music",
"Photography"
],
"status": "pending",
"createdAt": "2025-09-12T23:52:14.685Z"
}
],
"meta": {
"page": 17,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=17&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=18&limit=24",
"prev": "/api/v1/matchmaking?page=16&limit=24"
}
}