example-data.com
Menu
Browse docs and collections

matchmaking

matchmaking

Page 19 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": 433,
      "userId": 205,
      "candidateUserId": 215,
      "matchScorePercent": 27,
      "commonInterests": [
        "Coffee",
        "Art",
        "Volunteering"
      ],
      "status": "liked",
      "createdAt": "2026-03-21T07:51:00.805Z"
    },
    {
      "id": 434,
      "userId": 160,
      "candidateUserId": 234,
      "matchScorePercent": 13,
      "commonInterests": [
        "Movies",
        "Yoga",
        "Music",
        "Languages",
        "Art"
      ],
      "status": "liked",
      "createdAt": "2026-02-07T17:58:21.140Z"
    },
    {
      "id": 435,
      "userId": 186,
      "candidateUserId": 106,
      "matchScorePercent": 57,
      "commonInterests": [
        "Yoga",
        "Reading",
        "Languages",
        "Photography",
        "Movies"
      ],
      "status": "pending",
      "createdAt": "2026-03-11T21:41:59.865Z"
    }
  ],
  "meta": {
    "page": 19,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=19&limit=24",
    "first": "/api/v1/matchmaking?page=1&limit=24",
    "last": "/api/v1/matchmaking?page=21&limit=24",
    "next": "/api/v1/matchmaking?page=20&limit=24",
    "prev": "/api/v1/matchmaking?page=18&limit=24"
  }
}