matchmaking
matchmaking
Page 12 of 21.
Overview
-
Match #265
Score: 15% · passed
-
Match #266
Score: 88% · liked
-
Match #267
Score: 65% · liked
-
Match #268
Score: 95% · passed
-
Match #269
Score: 53% · blocked
-
Match #270
Score: 72% · pending
-
Match #271
Score: 71% · liked
-
Match #272
Score: 6% · pending
-
Match #273
Score: 23% · passed
-
Match #274
Score: 5% · passed
-
Match #275
Score: 68% · liked
-
Match #276
Score: 50% · liked
-
Match #277
Score: 74% · passed
-
Match #278
Score: 21% · pending
-
Match #279
Score: 62% · liked
-
Match #280
Score: 4% · pending
-
Match #281
Score: 20% · pending
-
Match #282
Score: 82% · matched
-
Match #283
Score: 88% · liked
-
Match #284
Score: 8% · passed
-
Match #285
Score: 67% · liked
-
Match #286
Score: 27% · pending
-
Match #287
Score: 40% · liked
-
Match #288
Score: 66% · 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": 265,
"userId": 117,
"candidateUserId": 119,
"matchScorePercent": 15,
"commonInterests": [
"Photography",
"Foodie",
"Volunteering",
"Art"
],
"status": "passed",
"createdAt": "2026-03-25T21:25:30.875Z"
},
{
"id": 266,
"userId": 142,
"candidateUserId": 55,
"matchScorePercent": 88,
"commonInterests": [
"Music"
],
"status": "liked",
"createdAt": "2025-09-28T09:29:22.410Z"
},
{
"id": 267,
"userId": 207,
"candidateUserId": 26,
"matchScorePercent": 65,
"commonInterests": [
"Hiking",
"Foodie",
"Live shows",
"Tech"
],
"status": "liked",
"createdAt": "2026-02-08T05:24:48.201Z"
}
],
"meta": {
"page": 12,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=12&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=13&limit=24",
"prev": "/api/v1/matchmaking?page=11&limit=24"
}
}