matchmaking
matchmaking
Page 15 of 21.
Overview
-
Match #337
Score: 61% · pending
-
Match #338
Score: 0% · pending
-
Match #339
Score: 40% · matched
-
Match #340
Score: 87% · pending
-
Match #341
Score: 25% · pending
-
Match #342
Score: 78% · passed
-
Match #343
Score: 61% · pending
-
Match #344
Score: 4% · pending
-
Match #345
Score: 13% · liked
-
Match #346
Score: 90% · liked
-
Match #347
Score: 30% · passed
-
Match #348
Score: 69% · liked
-
Match #349
Score: 12% · liked
-
Match #350
Score: 100% · pending
-
Match #351
Score: 83% · passed
-
Match #352
Score: 52% · passed
-
Match #353
Score: 41% · passed
-
Match #354
Score: 14% · pending
-
Match #355
Score: 12% · matched
-
Match #356
Score: 91% · pending
-
Match #357
Score: 55% · pending
-
Match #358
Score: 5% · passed
-
Match #359
Score: 88% · liked
-
Match #360
Score: 28% · 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": 337,
"userId": 61,
"candidateUserId": 219,
"matchScorePercent": 61,
"commonInterests": [
"Movies"
],
"status": "pending",
"createdAt": "2025-11-20T08:17:15.345Z"
},
{
"id": 338,
"userId": 166,
"candidateUserId": 33,
"matchScorePercent": 0,
"commonInterests": [
"Cycling"
],
"status": "pending",
"createdAt": "2025-12-30T05:18:53.232Z"
},
{
"id": 339,
"userId": 102,
"candidateUserId": 35,
"matchScorePercent": 40,
"commonInterests": [
"Outdoors",
"Languages",
"Travel",
"Photography",
"Tech"
],
"status": "matched",
"createdAt": "2025-10-20T11:13:18.399Z"
}
],
"meta": {
"page": 15,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=15&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=16&limit=24",
"prev": "/api/v1/matchmaking?page=14&limit=24"
}
}