matchmaking
matchmaking
Page 4 of 10.
-
Match #73
Score: 89% · pending
-
Match #74
Score: 55% · passed
-
Match #75
Score: 93% · pending
-
Match #76
Score: 4% · liked
-
Match #77
Score: 56% · matched
-
Match #78
Score: 10% · liked
-
Match #79
Score: 69% · pending
-
Match #80
Score: 19% · blocked
-
Match #81
Score: 20% · matched
-
Match #82
Score: 90% · passed
-
Match #83
Score: 11% · matched
-
Match #84
Score: 6% · passed
-
Match #85
Score: 66% · passed
-
Match #86
Score: 86% · pending
-
Match #87
Score: 51% · passed
-
Match #88
Score: 93% · pending
-
Match #89
Score: 5% · pending
-
Match #90
Score: 39% · pending
-
Match #91
Score: 99% · liked
-
Match #92
Score: 51% · passed
-
Match #93
Score: 95% · pending
-
Match #94
Score: 61% · pending
-
Match #95
Score: 45% · pending
-
Match #96
Score: 46% · passed
Match #73
Score: 89% · pending
Match #74
Score: 55% · passed
Match #75
Score: 93% · pending
Match #76
Score: 4% · liked
Match #77
Score: 56% · matched
Match #78
Score: 10% · liked
Showing first 6 of 24 on this page.
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"
}
}