example-data.com
Menu
Browse docs and collections

matchmaking

matchmaking

Browse 500 matchmaking records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

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": 1,
      "userId": 170,
      "candidateUserId": 28,
      "matchScorePercent": 65,
      "commonInterests": [
        "Dancing"
      ],
      "status": "pending",
      "createdAt": "2025-08-29T11:17:19.015Z"
    },
    {
      "id": 2,
      "userId": 242,
      "candidateUserId": 36,
      "matchScorePercent": 4,
      "commonInterests": [
        "Outdoors",
        "Languages",
        "Live shows"
      ],
      "status": "liked",
      "createdAt": "2025-12-26T11:56:04.189Z"
    },
    {
      "id": 3,
      "userId": 206,
      "candidateUserId": 29,
      "matchScorePercent": 25,
      "commonInterests": [
        "Cycling",
        "Foodie",
        "Gaming"
      ],
      "status": "pending",
      "createdAt": "2025-06-10T02:07:43.403Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 500,
    "totalPages": 20
  },
  "links": {
    "self": "/api/v1/matchmaking?page=1",
    "first": "/api/v1/matchmaking?page=1",
    "last": "/api/v1/matchmaking?page=20",
    "next": "/api/v1/matchmaking?page=2",
    "prev": null
  }
}

View full response →