matchmaking
matchmaking
Page 20 of 21.
Overview
-
Match #457
Score: 24% · matched
-
Match #458
Score: 2% · liked
-
Match #459
Score: 37% · matched
-
Match #460
Score: 89% · liked
-
Match #461
Score: 0% · pending
-
Match #462
Score: 76% · passed
-
Match #463
Score: 97% · passed
-
Match #464
Score: 39% · pending
-
Match #465
Score: 27% · liked
-
Match #466
Score: 22% · matched
-
Match #467
Score: 54% · passed
-
Match #468
Score: 87% · liked
-
Match #469
Score: 12% · pending
-
Match #470
Score: 58% · liked
-
Match #471
Score: 14% · pending
-
Match #472
Score: 59% · pending
-
Match #473
Score: 19% · pending
-
Match #474
Score: 37% · liked
-
Match #475
Score: 69% · liked
-
Match #476
Score: 40% · liked
-
Match #477
Score: 71% · passed
-
Match #478
Score: 88% · matched
-
Match #479
Score: 98% · passed
-
Match #480
Score: 22% · liked
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": 457,
"userId": 40,
"candidateUserId": 88,
"matchScorePercent": 24,
"commonInterests": [
"Reading",
"Photography"
],
"status": "matched",
"createdAt": "2025-08-11T02:18:20.228Z"
},
{
"id": 458,
"userId": 240,
"candidateUserId": 76,
"matchScorePercent": 2,
"commonInterests": [
"Cooking",
"Travel"
],
"status": "liked",
"createdAt": "2026-03-09T11:29:03.729Z"
},
{
"id": 459,
"userId": 94,
"candidateUserId": 196,
"matchScorePercent": 37,
"commonInterests": [
"Cycling",
"Yoga"
],
"status": "matched",
"createdAt": "2025-08-25T09:27:34.008Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=20&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=21&limit=24",
"prev": "/api/v1/matchmaking?page=19&limit=24"
}
}