example-data.com
Menu
Browse docs and collections

matchmaking

matchmaking

Page 8 of 21.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/matchmaking?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/matchmaking.d.ts https://example-data.com/types/matchmaking.d.ts
import type { Matchmaking, ListEnvelope } from "./types/matchmaking";

const res = await fetch(
  "https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Matchmaking>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/matchmaking",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 169,
      "userId": 179,
      "candidateUserId": 26,
      "matchScorePercent": 63,
      "commonInterests": [
        "Languages"
      ],
      "status": "passed",
      "createdAt": "2025-09-13T10:25:25.144Z"
    },
    {
      "id": 170,
      "userId": 4,
      "candidateUserId": 69,
      "matchScorePercent": 96,
      "commonInterests": [
        "Fitness",
        "Hiking",
        "Photography",
        "Yoga"
      ],
      "status": "matched",
      "createdAt": "2026-01-06T23:09:01.768Z"
    },
    {
      "id": 171,
      "userId": 239,
      "candidateUserId": 97,
      "matchScorePercent": 3,
      "commonInterests": [
        "Movies"
      ],
      "status": "liked",
      "createdAt": "2025-10-24T03:35:06.721Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=8&limit=24",
    "first": "/api/v1/matchmaking?page=1&limit=24",
    "last": "/api/v1/matchmaking?page=21&limit=24",
    "next": "/api/v1/matchmaking?page=9&limit=24",
    "prev": "/api/v1/matchmaking?page=7&limit=24"
  }
}