matchmaking
matchmaking
Page 19 of 21.
Overview
-
Match #433
Score: 27% · liked
-
Match #434
Score: 13% · liked
-
Match #435
Score: 57% · pending
-
Match #436
Score: 68% · pending
-
Match #437
Score: 58% · passed
-
Match #438
Score: 77% · pending
-
Match #439
Score: 75% · passed
-
Match #440
Score: 91% · pending
-
Match #441
Score: 74% · passed
-
Match #442
Score: 3% · pending
-
Match #443
Score: 33% · pending
-
Match #444
Score: 12% · pending
-
Match #445
Score: 39% · pending
-
Match #446
Score: 87% · matched
-
Match #447
Score: 44% · pending
-
Match #448
Score: 17% · pending
-
Match #449
Score: 48% · passed
-
Match #450
Score: 45% · liked
-
Match #451
Score: 61% · passed
-
Match #452
Score: 58% · pending
-
Match #453
Score: 68% · pending
-
Match #454
Score: 35% · matched
-
Match #455
Score: 49% · passed
-
Match #456
Score: 96% · 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": 433,
"userId": 205,
"candidateUserId": 215,
"matchScorePercent": 27,
"commonInterests": [
"Coffee",
"Art",
"Volunteering"
],
"status": "liked",
"createdAt": "2026-03-21T07:51:00.805Z"
},
{
"id": 434,
"userId": 160,
"candidateUserId": 234,
"matchScorePercent": 13,
"commonInterests": [
"Movies",
"Yoga",
"Music",
"Languages",
"Art"
],
"status": "liked",
"createdAt": "2026-02-07T17:58:21.140Z"
},
{
"id": 435,
"userId": 186,
"candidateUserId": 106,
"matchScorePercent": 57,
"commonInterests": [
"Yoga",
"Reading",
"Languages",
"Photography",
"Movies"
],
"status": "pending",
"createdAt": "2026-03-11T21:41:59.865Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=19&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=20&limit=24",
"prev": "/api/v1/matchmaking?page=18&limit=24"
}
}