matchmaking
matchmaking
Page 7 of 10.
-
Match #145
Score: 88% · passed
-
Match #146
Score: 47% · pending
-
Match #147
Score: 46% · liked
-
Match #148
Score: 42% · matched
-
Match #149
Score: 26% · liked
-
Match #150
Score: 8% · pending
-
Match #151
Score: 40% · liked
-
Match #152
Score: 54% · matched
-
Match #153
Score: 90% · pending
-
Match #154
Score: 8% · pending
-
Match #155
Score: 35% · liked
-
Match #156
Score: 71% · passed
-
Match #157
Score: 60% · blocked
-
Match #158
Score: 52% · matched
-
Match #159
Score: 26% · matched
-
Match #160
Score: 82% · liked
-
Match #161
Score: 17% · pending
-
Match #162
Score: 57% · passed
-
Match #163
Score: 48% · passed
-
Match #164
Score: 79% · matched
-
Match #165
Score: 33% · passed
-
Match #166
Score: 41% · pending
-
Match #167
Score: 21% · passed
-
Match #168
Score: 1% · pending
Match #145
Score: 88% · passed
Match #146
Score: 47% · pending
Match #147
Score: 46% · liked
Match #148
Score: 42% · matched
Match #149
Score: 26% · liked
Match #150
Score: 8% · pending
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": 145,
"userId": 27,
"candidateUserId": 178,
"matchScorePercent": 88,
"commonInterests": [
"Fitness",
"Volunteering",
"Gaming"
],
"status": "passed",
"createdAt": "2026-01-21T09:48:50.039Z"
},
{
"id": 146,
"userId": 96,
"candidateUserId": 38,
"matchScorePercent": 47,
"commonInterests": [
"Music",
"Cooking"
],
"status": "pending",
"createdAt": "2026-01-12T08:24:21.009Z"
},
{
"id": 147,
"userId": 160,
"candidateUserId": 29,
"matchScorePercent": 46,
"commonInterests": [
"Foodie"
],
"status": "liked",
"createdAt": "2025-12-04T06:56:23.394Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=7",
"next": "/api/v1/matchmaking?page=8",
"prev": "/api/v1/matchmaking?page=6"
}
}