example-data.com

matchmaking / #8

Match #8

Score: 26% · pending

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/matchmaking/8" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/matchmaking/8"
);
const matchmaking = await res.json();
import type { Matchmaking } from "https://example-data.com/types/matchmaking.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/matchmaking/8"
);
const matchmaking = (await res.json()) as Matchmaking;
import requests

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/8"
)
matchmaking = res.json()
{
  "id": 8,
  "userId": 210,
  "candidateUserId": 230,
  "matchScorePercent": 26,
  "commonInterests": [
    "Volunteering",
    "Tech"
  ],
  "status": "pending",
  "createdAt": "2025-07-18T11:32:20.743Z"
}
Draftbit