matchmaking
matchmaking
Page 5 of 10.
-
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
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
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/matchmaking?limit=25"const res = await fetch(
"https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = await res.json();import type { Matchmaking, ListEnvelope } from "https://example-data.com/types/matchmaking.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Matchmaking>;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking",
params={"limit": 25},
)
data = res.json() {
"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",
"next": "/api/v1/matchmaking?page=6",
"prev": "/api/v1/matchmaking?page=4"
}
}