example-data.com

matchmaking / #191

Match #191

Score: 3% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/191"
)
matchmaking = res.json()
{
  "id": 191,
  "userId": 126,
  "candidateUserId": 23,
  "matchScorePercent": 3,
  "commonInterests": [
    "Outdoors",
    "Travel",
    "Photography",
    "Music",
    "Cycling"
  ],
  "status": "pending",
  "createdAt": "2026-04-11T21:15:31.974Z"
}
Draftbit