matchmaking
matchmaking
Page 11 of 21.
Overview
-
Match #241
Score: 40% · passed
-
Match #242
Score: 49% · passed
-
Match #243
Score: 35% · liked
-
Match #244
Score: 22% · matched
-
Match #245
Score: 91% · blocked
-
Match #246
Score: 87% · matched
-
Match #247
Score: 68% · passed
-
Match #248
Score: 3% · matched
-
Match #249
Score: 84% · pending
-
Match #250
Score: 26% · pending
-
Match #251
Score: 95% · pending
-
Match #252
Score: 46% · pending
-
Match #253
Score: 70% · passed
-
Match #254
Score: 27% · pending
-
Match #255
Score: 55% · liked
-
Match #256
Score: 96% · matched
-
Match #257
Score: 2% · pending
-
Match #258
Score: 30% · pending
-
Match #259
Score: 29% · pending
-
Match #260
Score: 65% · pending
-
Match #261
Score: 52% · liked
-
Match #262
Score: 24% · passed
-
Match #263
Score: 86% · liked
-
Match #264
Score: 98% · liked
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": 241,
"userId": 73,
"candidateUserId": 175,
"matchScorePercent": 40,
"commonInterests": [
"Cooking",
"Foodie",
"Dancing",
"Gaming",
"Volunteering"
],
"status": "passed",
"createdAt": "2025-05-23T05:33:41.415Z"
},
{
"id": 242,
"userId": 121,
"candidateUserId": 29,
"matchScorePercent": 49,
"commonInterests": [
"Music",
"Fitness",
"Tech",
"Coffee"
],
"status": "passed",
"createdAt": "2025-08-29T07:12:09.073Z"
},
{
"id": 243,
"userId": 41,
"candidateUserId": 238,
"matchScorePercent": 35,
"commonInterests": [
"Volunteering",
"Music"
],
"status": "liked",
"createdAt": "2026-04-19T12:25:24.679Z"
}
],
"meta": {
"page": 11,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=11&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=12&limit=24",
"prev": "/api/v1/matchmaking?page=10&limit=24"
}
}