matchmaking
matchmaking
Page 6 of 10.
-
Match #121
Score: 72% · matched
-
Match #122
Score: 5% · pending
-
Match #123
Score: 27% · pending
-
Match #124
Score: 93% · pending
-
Match #125
Score: 62% · liked
-
Match #126
Score: 94% · blocked
-
Match #127
Score: 8% · matched
-
Match #128
Score: 70% · passed
-
Match #129
Score: 99% · pending
-
Match #130
Score: 70% · liked
-
Match #131
Score: 42% · liked
-
Match #132
Score: 64% · pending
-
Match #133
Score: 56% · liked
-
Match #134
Score: 8% · liked
-
Match #135
Score: 72% · pending
-
Match #136
Score: 26% · pending
-
Match #137
Score: 25% · liked
-
Match #138
Score: 37% · liked
-
Match #139
Score: 94% · passed
-
Match #140
Score: 66% · pending
-
Match #141
Score: 3% · passed
-
Match #142
Score: 52% · matched
-
Match #143
Score: 42% · pending
-
Match #144
Score: 0% · pending
Match #121
Score: 72% · matched
Match #122
Score: 5% · pending
Match #123
Score: 27% · pending
Match #124
Score: 93% · pending
Match #125
Score: 62% · liked
Match #126
Score: 94% · blocked
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": 121,
"userId": 143,
"candidateUserId": 211,
"matchScorePercent": 72,
"commonInterests": [
"Hiking",
"Volunteering",
"Dancing",
"Tech"
],
"status": "matched",
"createdAt": "2026-03-31T13:36:43.126Z"
},
{
"id": 122,
"userId": 35,
"candidateUserId": 127,
"matchScorePercent": 5,
"commonInterests": [
"Languages",
"Dancing"
],
"status": "pending",
"createdAt": "2025-10-19T18:27:26.654Z"
},
{
"id": 123,
"userId": 144,
"candidateUserId": 76,
"matchScorePercent": 27,
"commonInterests": [
"Reading"
],
"status": "pending",
"createdAt": "2025-12-31T06:38:52.854Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=6",
"next": "/api/v1/matchmaking?page=7",
"prev": "/api/v1/matchmaking?page=5"
}
}