matchmaking
matchmaking
Page 9 of 21.
Overview
-
Match #193
Score: 28% · liked
-
Match #194
Score: 28% · pending
-
Match #195
Score: 18% · pending
-
Match #196
Score: 6% · pending
-
Match #197
Score: 58% · passed
-
Match #198
Score: 69% · matched
-
Match #199
Score: 0% · pending
-
Match #200
Score: 33% · liked
-
Match #201
Score: 77% · passed
-
Match #202
Score: 63% · pending
-
Match #203
Score: 97% · matched
-
Match #204
Score: 96% · blocked
-
Match #205
Score: 1% · matched
-
Match #206
Score: 49% · pending
-
Match #207
Score: 33% · passed
-
Match #208
Score: 56% · pending
-
Match #209
Score: 63% · liked
-
Match #210
Score: 71% · passed
-
Match #211
Score: 85% · liked
-
Match #212
Score: 100% · liked
-
Match #213
Score: 16% · liked
-
Match #214
Score: 17% · passed
-
Match #215
Score: 74% · pending
-
Match #216
Score: 42% · pending
Request
curl example
curl -sS \ "https://example-data.com/api/v1/matchmaking?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/matchmaking.d.ts https://example-data.com/types/matchmaking.d.ts
import type { Matchmaking, ListEnvelope } from "./types/matchmaking";
const res = await fetch(
"https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Matchmaking>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 193,
"userId": 180,
"candidateUserId": 207,
"matchScorePercent": 28,
"commonInterests": [],
"status": "liked",
"createdAt": "2026-05-01T03:29:37.766Z"
},
{
"id": 194,
"userId": 122,
"candidateUserId": 206,
"matchScorePercent": 28,
"commonInterests": [
"Cycling"
],
"status": "pending",
"createdAt": "2025-09-08T14:01:28.186Z"
},
{
"id": 195,
"userId": 218,
"candidateUserId": 197,
"matchScorePercent": 18,
"commonInterests": [
"Cycling",
"Fitness",
"Volunteering",
"Tech",
"Live shows"
],
"status": "pending",
"createdAt": "2026-02-02T13:04:07.165Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=9&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=10&limit=24",
"prev": "/api/v1/matchmaking?page=8&limit=24"
}
}