matchmaking
matchmaking
Page 21 of 21.
Overview
-
Match #481
Score: 25% · pending
-
Match #482
Score: 29% · pending
-
Match #483
Score: 77% · pending
-
Match #484
Score: 4% · pending
-
Match #485
Score: 48% · pending
-
Match #486
Score: 90% · passed
-
Match #487
Score: 2% · passed
-
Match #488
Score: 47% · matched
-
Match #489
Score: 84% · matched
-
Match #490
Score: 4% · pending
-
Match #491
Score: 7% · liked
-
Match #492
Score: 75% · passed
-
Match #493
Score: 2% · liked
-
Match #494
Score: 14% · pending
-
Match #495
Score: 52% · passed
-
Match #496
Score: 44% · liked
-
Match #497
Score: 66% · liked
-
Match #498
Score: 46% · passed
-
Match #499
Score: 74% · pending
-
Match #500
Score: 67% · 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": 481,
"userId": 61,
"candidateUserId": 146,
"matchScorePercent": 25,
"commonInterests": [
"Gaming",
"Volunteering",
"Yoga"
],
"status": "pending",
"createdAt": "2026-05-09T04:39:16.365Z"
},
{
"id": 482,
"userId": 250,
"candidateUserId": 164,
"matchScorePercent": 29,
"commonInterests": [
"Cycling",
"Art",
"Travel",
"Movies"
],
"status": "pending",
"createdAt": "2026-01-15T11:30:54.123Z"
},
{
"id": 483,
"userId": 212,
"candidateUserId": 222,
"matchScorePercent": 77,
"commonInterests": [
"Gaming",
"Foodie",
"Languages",
"Dancing",
"Outdoors"
],
"status": "pending",
"createdAt": "2025-12-21T03:29:28.915Z"
}
],
"meta": {
"page": 21,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=21&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": null,
"prev": "/api/v1/matchmaking?page=20&limit=24"
}
}