matchmaking
matchmaking
Browse 500 matchmaking records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
-
Match #1
Score: 65% · pending
-
Match #2
Score: 4% · liked
-
Match #3
Score: 25% · pending
-
Match #4
Score: 60% · liked
-
Match #5
Score: 71% · liked
-
Match #6
Score: 44% · matched
-
Match #7
Score: 51% · pending
-
Match #8
Score: 26% · pending
-
Match #9
Score: 72% · passed
-
Match #10
Score: 75% · passed
-
Match #11
Score: 26% · pending
-
Match #12
Score: 61% · matched
-
Match #13
Score: 0% · pending
-
Match #14
Score: 61% · pending
-
Match #15
Score: 61% · liked
-
Match #16
Score: 33% · pending
-
Match #17
Score: 48% · pending
-
Match #18
Score: 14% · passed
-
Match #19
Score: 34% · matched
-
Match #20
Score: 50% · passed
-
Match #21
Score: 76% · passed
-
Match #22
Score: 15% · liked
-
Match #23
Score: 20% · pending
-
Match #24
Score: 17% · liked
Match #1
Score: 65% · pending
Match #2
Score: 4% · liked
Match #3
Score: 25% · pending
Match #4
Score: 60% · liked
Match #5
Score: 71% · liked
Match #6
Score: 44% · matched
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": 1,
"userId": 170,
"candidateUserId": 28,
"matchScorePercent": 65,
"commonInterests": [
"Dancing"
],
"status": "pending",
"createdAt": "2025-08-29T11:17:19.015Z"
},
{
"id": 2,
"userId": 242,
"candidateUserId": 36,
"matchScorePercent": 4,
"commonInterests": [
"Outdoors",
"Languages",
"Live shows"
],
"status": "liked",
"createdAt": "2025-12-26T11:56:04.189Z"
},
{
"id": 3,
"userId": 206,
"candidateUserId": 29,
"matchScorePercent": 25,
"commonInterests": [
"Cycling",
"Foodie",
"Gaming"
],
"status": "pending",
"createdAt": "2025-06-10T02:07:43.403Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 500,
"totalPages": 20
},
"links": {
"self": "/api/v1/matchmaking?page=1",
"first": "/api/v1/matchmaking?page=1",
"last": "/api/v1/matchmaking?page=20",
"next": "/api/v1/matchmaking?page=2",
"prev": null
}
}