example-data.com

matchmaking / #206

Match #206

Score: 49% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/206"
)
matchmaking = res.json()
{
  "id": 206,
  "userId": 127,
  "candidateUserId": 121,
  "matchScorePercent": 49,
  "commonInterests": [
    "Coffee",
    "Yoga",
    "Photography",
    "Hiking",
    "Volunteering"
  ],
  "status": "pending",
  "createdAt": "2025-08-12T12:06:16.471Z"
}
Draftbit