example-data.com

matchmaking / #57

Match #57

Score: 29% · pending

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/matchmaking/57" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/matchmaking/57"
);
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/57"
);
const matchmaking = (await res.json()) as Matchmaking;
import requests

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/57"
)
matchmaking = res.json()
{
  "id": 57,
  "userId": 103,
  "candidateUserId": 15,
  "matchScorePercent": 29,
  "commonInterests": [
    "Coffee",
    "Outdoors",
    "Music",
    "Foodie"
  ],
  "status": "pending",
  "createdAt": "2025-12-22T16:46:56.949Z"
}
Draftbit