matchmaking
matchmaking
Page 3 of 10.
-
Match #49
Score: 41% · pending
-
Match #50
Score: 49% · pending
-
Match #51
Score: 56% · passed
-
Match #52
Score: 63% · blocked
-
Match #53
Score: 67% · liked
-
Match #54
Score: 99% · liked
-
Match #55
Score: 40% · pending
-
Match #56
Score: 12% · pending
-
Match #57
Score: 29% · pending
-
Match #58
Score: 31% · pending
-
Match #59
Score: 6% · liked
-
Match #60
Score: 20% · pending
-
Match #61
Score: 14% · liked
-
Match #62
Score: 66% · liked
-
Match #63
Score: 71% · passed
-
Match #64
Score: 54% · pending
-
Match #65
Score: 57% · pending
-
Match #66
Score: 20% · passed
-
Match #67
Score: 81% · liked
-
Match #68
Score: 14% · liked
-
Match #69
Score: 63% · liked
-
Match #70
Score: 16% · passed
-
Match #71
Score: 35% · matched
-
Match #72
Score: 93% · passed
Match #49
Score: 41% · pending
Match #50
Score: 49% · pending
Match #51
Score: 56% · passed
Match #52
Score: 63% · blocked
Match #53
Score: 67% · liked
Match #54
Score: 99% · liked
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": 49,
"userId": 106,
"candidateUserId": 149,
"matchScorePercent": 41,
"commonInterests": [],
"status": "pending",
"createdAt": "2025-08-26T23:03:09.399Z"
},
{
"id": 50,
"userId": 208,
"candidateUserId": 172,
"matchScorePercent": 49,
"commonInterests": [
"Cooking"
],
"status": "pending",
"createdAt": "2025-11-07T11:18:29.510Z"
},
{
"id": 51,
"userId": 226,
"candidateUserId": 154,
"matchScorePercent": 56,
"commonInterests": [],
"status": "passed",
"createdAt": "2025-08-02T09:44:52.404Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/matchmaking?page=3",
"next": "/api/v1/matchmaking?page=4",
"prev": "/api/v1/matchmaking?page=2"
}
}