matchmaking
matchmaking
Page 8 of 10.
-
Match #169
Score: 63% · passed
-
Match #170
Score: 96% · matched
-
Match #171
Score: 3% · liked
-
Match #172
Score: 24% · pending
-
Match #173
Score: 18% · pending
-
Match #174
Score: 100% · pending
-
Match #175
Score: 42% · pending
-
Match #176
Score: 58% · pending
-
Match #177
Score: 87% · pending
-
Match #178
Score: 19% · liked
-
Match #179
Score: 79% · pending
-
Match #180
Score: 82% · matched
-
Match #181
Score: 66% · pending
-
Match #182
Score: 54% · passed
-
Match #183
Score: 72% · pending
-
Match #184
Score: 52% · liked
-
Match #185
Score: 86% · liked
-
Match #186
Score: 94% · matched
-
Match #187
Score: 73% · liked
-
Match #188
Score: 42% · pending
-
Match #189
Score: 81% · passed
-
Match #190
Score: 21% · pending
-
Match #191
Score: 3% · pending
-
Match #192
Score: 57% · pending
Match #169
Score: 63% · passed
Match #170
Score: 96% · matched
Match #171
Score: 3% · liked
Match #172
Score: 24% · pending
Match #173
Score: 18% · pending
Match #174
Score: 100% · 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": 169,
"userId": 179,
"candidateUserId": 26,
"matchScorePercent": 63,
"commonInterests": [
"Languages"
],
"status": "passed",
"createdAt": "2025-09-13T10:25:25.144Z"
},
{
"id": 170,
"userId": 4,
"candidateUserId": 69,
"matchScorePercent": 96,
"commonInterests": [
"Fitness",
"Hiking",
"Photography",
"Yoga"
],
"status": "matched",
"createdAt": "2026-01-06T23:09:01.768Z"
},
{
"id": 171,
"userId": 239,
"candidateUserId": 97,
"matchScorePercent": 3,
"commonInterests": [
"Movies"
],
"status": "liked",
"createdAt": "2025-10-24T03:35:06.721Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=8",
"next": "/api/v1/matchmaking?page=9",
"prev": "/api/v1/matchmaking?page=7"
}
}