Enumerates feasible player pairs, ranks them by rating gap then worst latency, and greedil
Enumerates feasible player pairs, ranks them by rating gap then worst latency, and greedily selects disjoint pairs. This is a transparent local pairing heuristic, not globally optimal team balancing, skill inference, anti-smurfing, or a live queue service.
3000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-01
updated
Provider
gaming.halowerk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"max_latency_ms": 80,
"max_rating_gap": 120,
"players": [
{
"latency_ms": 28,
"player_id": "p1",
"rating": 1480,
"rating_uncertainty": 70
},
{
"latency_ms": 42,
"player_id": "p2",
"rating": 1515,
"rating_uncertainty": 60
},
{
"latency_ms": 35,
"player_id": "p3",
"rating": 1810,
"rating_uncertainty": 90
},
{
"latency_ms": 39,
"player_id": "p4",
"rating": 1760,
"rating_uncertainty": 80
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"max_latency_ms": {
"maximum": 100000,
"minimum": 0,
"type": "number"
},
"max_rating_gap": {
"maximum": 10000,
"minimum": 0,
"type": "number"
},
"players": {
"items": {
"additionalProperties": false,
"properties": {
"latency_ms": {
"maximum": 100000,
"minimum": 0,
"type": "number"
},
"player_id": {
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"rating": {
"maximum": 10000,
"minimum": 0,
"type": "number"
},
"rating_uncertainty": {
"maximum": 5000,
"minimum": 0,
"type": "number"
}
},
"required": [
"player_id",
"rating",
"rating_uncertainty",
"latency_ms"
],
"type": "object"
},
"maxItems": 500,
"minItems": 2,
"type": "array"
}
},
"required": [
"players",
"max_rating_gap",
"max_latency_ms"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://gaming.halowerk.com/v1/matchmaking-mmr" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gaming.halowerk.com/v1/matchmaking-mmr");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://gaming.halowerk.com/v1/matchmaking-mmr")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14971.json, and this resource appears in /discovery/resources and /discovery/search.