matchmaking
matchmaking
Page 5 of 21.
Overview
-
Match #97
Score: 54% · pending
-
Match #98
Score: 93% · liked
-
Match #99
Score: 84% · liked
-
Match #100
Score: 1% · liked
-
Match #101
Score: 4% · liked
-
Match #102
Score: 80% · pending
-
Match #103
Score: 37% · passed
-
Match #104
Score: 64% · pending
-
Match #105
Score: 29% · matched
-
Match #106
Score: 65% · liked
-
Match #107
Score: 80% · liked
-
Match #108
Score: 21% · pending
-
Match #109
Score: 38% · liked
-
Match #110
Score: 93% · pending
-
Match #111
Score: 67% · pending
-
Match #112
Score: 43% · liked
-
Match #113
Score: 89% · matched
-
Match #114
Score: 99% · blocked
-
Match #115
Score: 59% · passed
-
Match #116
Score: 3% · passed
-
Match #117
Score: 85% · pending
-
Match #118
Score: 76% · matched
-
Match #119
Score: 89% · liked
-
Match #120
Score: 6% · 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": 97,
"userId": 222,
"candidateUserId": 39,
"matchScorePercent": 54,
"commonInterests": [
"Foodie"
],
"status": "pending",
"createdAt": "2025-10-31T20:08:48.226Z"
},
{
"id": 98,
"userId": 181,
"candidateUserId": 86,
"matchScorePercent": 93,
"commonInterests": [
"Photography",
"Outdoors",
"Live shows",
"Hiking",
"Fitness"
],
"status": "liked",
"createdAt": "2026-05-20T03:03:49.120Z"
},
{
"id": 99,
"userId": 179,
"candidateUserId": 97,
"matchScorePercent": 84,
"commonInterests": [
"Volunteering"
],
"status": "liked",
"createdAt": "2026-02-23T19:05:29.526Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=5&limit=24",
"first": "/api/v1/matchmaking?page=1&limit=24",
"last": "/api/v1/matchmaking?page=21&limit=24",
"next": "/api/v1/matchmaking?page=6&limit=24",
"prev": "/api/v1/matchmaking?page=4&limit=24"
}
}