matchmaking
matchmaking
Page 10 of 10.
-
Match #217
Score: 18% · matched
-
Match #218
Score: 21% · blocked
-
Match #219
Score: 74% · pending
-
Match #220
Score: 28% · pending
-
Match #221
Score: 66% · passed
-
Match #222
Score: 83% · matched
-
Match #223
Score: 33% · liked
-
Match #224
Score: 67% · pending
-
Match #225
Score: 91% · liked
-
Match #226
Score: 24% · liked
-
Match #227
Score: 57% · liked
-
Match #228
Score: 61% · passed
-
Match #229
Score: 33% · pending
-
Match #230
Score: 20% · liked
-
Match #231
Score: 54% · matched
-
Match #232
Score: 76% · liked
-
Match #233
Score: 31% · liked
-
Match #234
Score: 26% · passed
-
Match #235
Score: 7% · passed
-
Match #236
Score: 18% · passed
-
Match #237
Score: 53% · liked
-
Match #238
Score: 32% · matched
-
Match #239
Score: 94% · passed
-
Match #240
Score: 76% · matched
Match #217
Score: 18% · matched
Match #218
Score: 21% · blocked
Match #219
Score: 74% · pending
Match #220
Score: 28% · pending
Match #221
Score: 66% · passed
Match #222
Score: 83% · matched
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": 217,
"userId": 226,
"candidateUserId": 58,
"matchScorePercent": 18,
"commonInterests": [],
"status": "matched",
"createdAt": "2025-06-08T11:07:41.447Z"
},
{
"id": 218,
"userId": 221,
"candidateUserId": 53,
"matchScorePercent": 21,
"commonInterests": [
"Reading",
"Fitness"
],
"status": "blocked",
"createdAt": "2025-07-28T16:49:13.197Z"
},
{
"id": 219,
"userId": 161,
"candidateUserId": 171,
"matchScorePercent": 74,
"commonInterests": [
"Reading",
"Art",
"Coffee"
],
"status": "pending",
"createdAt": "2025-11-28T11:55:30.431Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=10",
"next": "/api/v1/matchmaking?page=11",
"prev": "/api/v1/matchmaking?page=9"
}
}