example-data.com
Menu
Browse docs and collections

matchmaking

matchmaking

Page 18 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": 409,
      "userId": 85,
      "candidateUserId": 211,
      "matchScorePercent": 62,
      "commonInterests": [
        "Hiking",
        "Dancing",
        "Volunteering"
      ],
      "status": "pending",
      "createdAt": "2026-02-16T17:10:59.627Z"
    },
    {
      "id": 410,
      "userId": 23,
      "candidateUserId": 149,
      "matchScorePercent": 41,
      "commonInterests": [
        "Foodie",
        "Coffee",
        "Dancing"
      ],
      "status": "passed",
      "createdAt": "2026-01-23T22:08:53.782Z"
    },
    {
      "id": 411,
      "userId": 120,
      "candidateUserId": 39,
      "matchScorePercent": 40,
      "commonInterests": [
        "Cooking",
        "Travel",
        "Dancing"
      ],
      "status": "passed",
      "createdAt": "2025-09-09T02:51:19.282Z"
    }
  ],
  "meta": {
    "page": 18,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=18&limit=24",
    "first": "/api/v1/matchmaking?page=1&limit=24",
    "last": "/api/v1/matchmaking?page=21&limit=24",
    "next": "/api/v1/matchmaking?page=19&limit=24",
    "prev": "/api/v1/matchmaking?page=17&limit=24"
  }
}