matchmaking
matchmaking
Page 16 of 21.
Overview
-
Match #361
Score: 0% · matched
-
Match #362
Score: 47% · liked
-
Match #363
Score: 94% · pending
-
Match #364
Score: 86% · liked
-
Match #365
Score: 26% · pending
-
Match #366
Score: 39% · liked
-
Match #367
Score: 79% · passed
-
Match #368
Score: 8% · matched
-
Match #369
Score: 36% · pending
-
Match #370
Score: 87% · passed
-
Match #371
Score: 62% · passed
-
Match #372
Score: 91% · liked
-
Match #373
Score: 28% · passed
-
Match #374
Score: 36% · passed
-
Match #375
Score: 100% · pending
-
Match #376
Score: 66% · liked
-
Match #377
Score: 72% · passed
-
Match #378
Score: 48% · matched
-
Match #379
Score: 52% · pending
-
Match #380
Score: 86% · passed
-
Match #381
Score: 55% · passed
-
Match #382
Score: 12% · liked
-
Match #383
Score: 52% · liked
-
Match #384
Score: 95% · 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": 361,
"userId": 50,
"candidateUserId": 52,
"matchScorePercent": 0,
"commonInterests": [
"Fitness"
],
"status": "matched",
"createdAt": "2025-05-22T09:19:31.616Z"
},
{
"id": 362,
"userId": 179,
"candidateUserId": 81,
"matchScorePercent": 47,
"commonInterests": [],
"status": "liked",
"createdAt": "2026-01-20T08:54:47.584Z"
},
{
"id": 363,
"userId": 38,
"candidateUserId": 2,
"matchScorePercent": 94,
"commonInterests": [
"Dancing",
"Movies",
"Cooking",
"Hiking"
],
"status": "pending",
"createdAt": "2025-09-30T19:54:51.269Z"
}
],
"meta": {
"page": 16,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=16&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=17&limit=24",
"prev": "/api/v1/matchmaking?page=15&limit=24"
}
}