matchmaking
matchmaking
Page 13 of 21.
Overview
-
Match #289
Score: 37% · passed
-
Match #290
Score: 45% · blocked
-
Match #291
Score: 68% · pending
-
Match #292
Score: 98% · passed
-
Match #293
Score: 67% · matched
-
Match #294
Score: 95% · liked
-
Match #295
Score: 15% · liked
-
Match #296
Score: 91% · pending
-
Match #297
Score: 52% · passed
-
Match #298
Score: 96% · passed
-
Match #299
Score: 37% · liked
-
Match #300
Score: 88% · passed
-
Match #301
Score: 23% · pending
-
Match #302
Score: 56% · pending
-
Match #303
Score: 67% · pending
-
Match #304
Score: 42% · liked
-
Match #305
Score: 36% · liked
-
Match #306
Score: 66% · liked
-
Match #307
Score: 69% · pending
-
Match #308
Score: 89% · pending
-
Match #309
Score: 96% · matched
-
Match #310
Score: 10% · matched
-
Match #311
Score: 45% · matched
-
Match #312
Score: 36% · passed
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": 289,
"userId": 107,
"candidateUserId": 55,
"matchScorePercent": 37,
"commonInterests": [
"Live shows",
"Foodie"
],
"status": "passed",
"createdAt": "2025-05-29T13:59:21.192Z"
},
{
"id": 290,
"userId": 133,
"candidateUserId": 237,
"matchScorePercent": 45,
"commonInterests": [
"Reading"
],
"status": "blocked",
"createdAt": "2026-02-21T05:01:37.352Z"
},
{
"id": 291,
"userId": 5,
"candidateUserId": 45,
"matchScorePercent": 68,
"commonInterests": [
"Travel",
"Foodie",
"Languages"
],
"status": "pending",
"createdAt": "2026-01-25T07:05:58.944Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=13&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=14&limit=24",
"prev": "/api/v1/matchmaking?page=12&limit=24"
}
}